CSS에는 네 가지 주요 의사 요소가 있습니다: before/after/first-letter/first-line. before/after 의사- 요소 선택기 에는 콘텐츠 속성을 사용하여 페이지에 콘텐츠를 삽입할 수 있습니다.
콘텐츠: "삽입된 기사" 또는 콘텐츠:none은 콘텐츠를 삽입하지 않습니다.
#html <h1>这是h1</h1> <h2>这是h2</h2> #css h1::after{ content:"h1后插入内容" } h2::after{ content:none }
실행 결과: https://jsfiddle.net/dwqs/ Lmm1r08x/
는 content 속성의 여는 따옴표 속성 값과 닫는 따옴표 속성 값을 사용하여 string 큰따옴표와 같은 중첩된 리터럴 기호입니다. 여는 따옴표는 시작 텍스트 기호를 추가하는 데 사용되고 닫는 따옴표는 끝 텍스트 기호를 추가하는 데 사용됩니다. 위 CSS 수정:
h1{ quotes:"(" ")"; /*利用元素的quotes属性指定文字符号*/ } h1::before{ content:open-quote; } h1::after{ content:close-quote; } h2{ quotes:"\"" "\""; /*添加双引号要转义*/ } h2::before{ content:open-quote; } h2::after{ content:close-quote; }
#html <h3>这是h3</h3> #css h3::after{ content:url(http://ido321.qiniudn.com/wp-content/themes/yusi1.0/img/new.gif) }
#html <a href="http:///www.ido321.com">这是链接</a> #css a:after{ content:attr(href); }
#html <h1>大标题</h1> <p>文字</p> <h1>大标题</h1> <p>文字</p> <h1>大标题</h1> <p>文字</p> <h1>大标题</h1> <p>文字</p> #css h1:before{ content:counter(my)'.'; } h1{ counter-increment:my; }
h1:before{ content:'第'counter(my)'章'; color:red; font-size:42px; } h1{ counter-increment:my; }
목록을 기반으로 할 수 있습니다. style-ul의 유형 속성 값입니다. 위 html을 사용하여 CSS를 다음과 같이 수정합니다.
h1:before{ content:counter(my,upper-alpha); color:red; font-size:42px; } h1{ counter-increment:my; }
#html <h1>大标题</h1> <p>文字1</p> <p>文字2</p> <p>文字3</p> <h1>大标题</h1> <p>文字1</p> <p>文字2</p> <p>文字3</p> <h1>大标题</h1> <p>文字1</p> <p>文字2</p> <p>文字3</p> #css h1::before{ content:counter(h)'.'; } h1{ counter-increment:h; } p::before{ content:counter(p)'.'; margin-left:40px; } p{ counter-increment:p; }
reset 속성을 사용하여 재설정하고 위 h1의 CSS를 수정할 수 있습니다.
h1{ counter-increment:h; counter-reset:p; }
아아아아
위 내용은 CSS3의 콘텐츠 속성에 대한 자세한 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!