css3新增的content 的用法:

<-----------------------------------------------文字加在内容后面----------------------------------------------->

css:

a:after
{
  content: "我在你后面";
}

html:

<a>123456789</a>

<-----------------------------------------------文字加在内容前面----------------------------------------------->

css:

a:before
{
  content: "我在你前面";
}

html:

<a>123456789</a>

posted @ 2017-10-17 15:33  小蘑菇123  阅读(523)  评论(0编辑  收藏  举报