content : normal | string | attr() | uri() | counter()
哎呀,出了点小问题,您可以稍后重试!
未填写内容或格式不正确!
content : normal | string | attr() | uri() | counter()
content用于插入生成内容;
content属性与 :before 及 :after 伪元素配合使用,将生成内容放在一个元素内容的前面或后面。
类型 | Internet Explorer | Firefox | Chrome | Opera | Safari |
---|---|---|---|---|---|
版本 | (×)IE6 | (×)Firefox 2.0 | (×)Chrome 1.0.x | (×)Opera 9.63 | (√)Safari 3.1 |
(×)IE7 | (√)Firefox 3.0 | (×)Chrome 2.0.x | (√)Safari 4 | ||
(√)IE8 | (√)Firefox 3.5 | ||||
.content1{width:240px; border:4px double #beceeb; padding:30px 10px; text-align:center;} .content1:before{content:open-quote;} .content1:after{content:close-quote;}
<div class="content1">有引号则支持content属性</div>