1

我想制作一个有截止角的 div。我想使用带有背景图像的 :before 和 :after 元素来做到这一点。div的左右有定位。但是它们不显示...

这是我的html:

<div class="page">
        <div class="canvas" id="canvas">
            <div class="TimeLineContainer">
                <div class="TimelineContent"></div>
            </div>

        </div>
    </div>

这是我使用的 CSS:

html, body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        body {
            font-size: 100%;
            font-family: "Calibri", Arial, sans-serif;
            color: black;
            text-align: center;
            overflow: hidden;
        }

        .page {
            display: block;
            text-align: left;
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

            .page .canvas {
                display: block;
                text-align: left;
                width: 100%;
                height: 100%;
                position: absolute;
                overflow: hidden;
                top: 0;
                left: 0;
            }

            .page .canvas .TimeLineContainer {
                display:block;
                width:100%;
                height:150px;
                text-align: center;
                overflow: hidden;
            }

                .page .canvas .TimelineContent {
                    display: block;
                    width:90%;
                    margin: 0 auto;
                    height:150px;
                    position: relative;
                    background-image: url(../img/middleTop.png);
                    background-repeat: repeat-x;
                    overflow: auto;
                }

                .page .canvas .TimeLineContainer .TimeLineContent:before {
                    position:absolute;
                    content:"";
                    top:0px;
                    left:-28px;
                    background-image: url (../img/cornerBL.png);
                    background-repeat: no-repeat;       
                    display: block;
                    width: 28px;
                    height: 150px;  
                }

                .page .canvas .TimeLineContainer .TimeLineContent:after {
                    position:absolute;
                    content:"";
                    top:0px;
                    right:-28px;
                    background-image: url (../img/cornerBR.png);
                    background-repeat: no-repeat;
                    display: block;
                    width: 28px;
                    height: 150px;  
                }

这些是我正在使用的图像:

角BL.png 角BL.png

中顶.png 中顶

和 CornerBR.png 角落BR

我真的不知道为什么不显示前后图像。

这是一个 JSfiddle:http: //jsfiddle.net/VWhPY/

4

1 回答 1

1

尝试.page .canvas .TimeLineContainer .TimelineContent:after(注意 TimelineContent 中的小写 l)。

它仍然无法正常工作,但这就是它根本没有出现的原因。现在您可以继续调试。

另一个提示:outline: thin solid red在调试时设置你的 :before 和 :after 元素,以更好地查看它们的位置,而不会干扰它们的盒子模型。

于 2013-01-03T16:21:13.230 回答