作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的大脑并没有完全围绕这个:我正在使用我的 h1
上的 :before
和 :after
伪元素>。我的 h1
有一个 100% 宽度
。
我希望 :after
是一个重复的背景图形,填充空白,后置文本,但无法弄清楚如何使它动态工作(即:标题是否是“Home”或“All About Awesome Products”,:after
将重复,直到到达 100% 的末尾。
例子:
.main h1:before {
content:"";
display:inline-block;
background:url(images/before-services.jpg);
width:18px;
height:14px;
margin-right:10px;
}
.main h1 {
color:#373737;
text-shadow:0px 2px #5ac166;
text-transform:uppercase;
font-family: 'Mister Giacco Bold';
font-size:2em;
width:100%;
}
.main h1:after {
content:"";
display:inline-block;
background:url(images/after-services.jpg) repeat-x;
width:80%;
height:15px;
margin-left:10px;
}
最佳答案
我认为这可行,但需要额外的 <span>
HTML
<h1><span>A Fancy Title</span></h1>
CSS
h1 {
text-align:center;
position:relative;
display:inline-block;
width:100%;
}
h1 span {
display: inline-blspaock;
position: relative;
}
h1 span:before,
h1 span:after {
content: "";
position: absolute;
height: 100%;
background-color: red;
top: 0;
width: 100%;
}
h1 span:before {
right: 100%;
margin-right: 15px;
}
h1 span:after {
left: 100%;
margin-left: 15px;
}
关于html - 动态 :After Pseudo-Element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21094796/
我是一名优秀的程序员,十分优秀!