css使用伪对象选择器设置元素内容_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:26:59
Original
1104 people have browsed it

css使用伪对象选择器设置元素内容:
本章节分享一段代码实例,它实现了使用css的伪对象选择器设置内容的功能。
这里只是做一下简单的演示,更多内容可以参阅相关阅读。
代码实例如下:

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">#antzone:after{  content:"softwhy.com";  color:blue;}</style></head><body><div id="antzone">蚂蚁部落的url地址是:</div></body></html>
Copy after login

上面的代码可以为div元素添加后续内容,然后设置后续内容的颜色。
相关阅读:
(1).:after可以参阅CSS的伪对象选择符E:after/E::after一章节。
(2).content属性可以参阅CSS的content属性一章节。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=18250

更多内容可以参阅:http://www.softwhy.com/divcss/

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template