::before和::after的细致引见

原文传送门: https://www.cnblogs.com/staro…

一、引见

css3为了辨别伪类和伪元素,伪元素采纳双冒号写法。

罕见伪类——:hover,:link,:active,:target,:not(),:focus。

罕见伪元素——::first-letter,::first-line,::before,::after,::selection。

::before和::after下特有的content,用于在css衬着中向元素逻辑上的头部或尾部增加内容。

这些增加不会出如今DOM中,不会转变文档内容,不可复制,仅仅是在css衬着层到场。

所以不要用:before或:after展现有实际意义的内容,只管运用它们显现润饰性内容,比方图标。

举例:网站有些联系电话,愿望在它们前加一个icon☎,就能够运用:before伪元素,以下:

复制代码
<!DOCTYPE html>
<meta charset=”utf-8″ />
<style type=”text/css”>

.phoneNumber::before {
content:'\260E';
font-size: 15px;

}
</style>
<p class=”phoneNumber”>12345645654</p>
复制代码

Note:这些特别字符的html,js和css的写法是差别的,详细可检察html特别字符的html,js,css写法汇总。

二、content属性

::before和::after必需合营content属性来运用,content用来定义插进去的内容,content必需有值,至少是空。默许情况下,伪类元素的display是默许值inline,能够经由过程设置display:block来转变其显现。

content可取以下值。

1、string
运用引号包一段字符串,将会向元素内容中增加字符串。如:a:after{content:””}

举例:

复制代码
<!DOCTYPE html>
<meta charset=”utf-8″ />
<style type=”text/css”>
p::before{

content: "《";
color: blue;

}
p::after{

content: "》";
color: blue;

}
</style>
<p>寻常的天下</p>
复制代码

2、attr()
经由过程attr()挪用当前元素的属性,比方将图片alt提醒笔墨或许链接的href地点显现出来。

<style type=”text/css”>
a::after{

content: "(" attr(href) ")";

}
</style>
starof

3、url()/uri()
用于援用媒体文件。

举例:“百度”前面给出一张图片,背面给出href属性。

复制代码
<style>
a::before{

content: url("https://www.baidu.com/img/baidu_jgylogo3.gif");

}
a::after{

content:"("attr(href)")";

}
a{

text-decoration: none;

}

</style>

<body>
百度
</body>
复制代码
结果:

4、counter()
挪用计数器,能够不运用列表元素完成序号功用。

合营counter-increment和counter-reset属性运用:

h2:before { counter-increment: chapter; content: “Chapter ” counter(chapter) “. ” }

代码:

复制代码
<style>
body{

counter-reset: section;

}
h1{

counter-reset: subsection;

}
h1:before{

counter-increment:section;
content:counter(section) "、";

}
h2:before{

counter-increment:subsection;
content: counter(section) "." counter(subsection) "、";

}

</style>

<body>
<h1>HTML tutorials</h1>
<h2>HTML Tutorial</h2>
<h2>XHTML Tutorial</h2>
<h2>CSS Tutorial</h2>

<h1>Scripting tutorials</h1>
<h2>JavaScript</h2>
<h2>VBScript</h2>

<h1>XML tutorials</h1>
<h2>XML</h2>
<h2>XSL</h2>

</body>
复制代码
结果:

相识更多可参考:https://developer.mozilla.org…

三、运用

1、消灭浮动
消灭浮动要领有多种,如今最常常使用的就是下面这类要领,仅须要以下款式即可在元素尾部自动消灭浮动

复制代码
.cf:before,
.cf:after {

content: " ";
display: table; 

}
.cf:after {

clear: both;

}
.cf {

*zoom: 1;

}
复制代码
2、模仿float:center的结果
float没有center这个取值,然则能够经由过程伪类来模仿完成。

这个结果完成很有意义,摆布经由过程::before float各自留出一半图片的位置,再把图片相对定位上去。

中心css以下:

复制代码

page-wrap { width: 60%; margin: 40px auto; position: relative; }

logo { position: absolute; top: 0; left: 50%; margin-left: -125px; }

l, #r { width: 49%; }

l { float: left; }

r { float: right; }

l:before, #r:before { content: “”; width: 125px; height: 250px; }

l:before { float: right; }

r:before { float: left; }

复制代码
完全代码以下:

View Code

出自:https://css-tricks.com/float-…

3、做出种种图形结果
举例:一个六角星

复制代码
<style>

star-six {

width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid red;
position: relative;
}

star-six::after {

width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-top: 100px solid red;
position: absolute;
content: “”;
top: 30px;
left: -50px;
}
</style>
<body>
<div id=”star-six”></div>
</body>
复制代码

star-six的div是一个正三角行,#star-six::after是一个倒三角形,经由过程相对定位,调解其位置即可完成六角星的结果。

点我检察更多。

4、不运用图片建立小图标
举例:比方一个电话

很奇妙的运用一个div左border加圆角当机身,::before和::after合营圆角当听筒。

复制代码
<style type=”text/css”>

#phone{
    width:50px;
    height:50px;
    border-left:6px solid #EEB422;
    border-radius:20%;
    transform:rotate(-30deg);
    -webkit-transform:rotate(-30deg);
    margin:20px;
    margin-right:0px;
    position:relative;
    display: inline-block;
    top: -5px;
}
 #phone:before{
    width:15px;
    height:15px;
    background:#EEB422;
    border-radius: 20%;
    content: "";
    position: absolute;
    left:-2px;
    top: 1px;
 }
 #phone:after{
    width:15px;
    height:15px;
    background:#EEB422;
    border-radius: 20%;
    content: "";
    position: absolute;
    left:-3px;
    top: 34px;
 }

</style>
<div id=”wraper”>

<div id="phone"></div>

</div>
复制代码

更多图标:

View Code

这个结果来自:http://www.w3cfuns.com/blog-5…

有大神用伪元素建立了84种小图标,详细可检察http://nicolasgallagher.com/p…

5、显现打印网页的URL
复制代码
<style>
@media print {
a[href]:after {

content: " (" attr(href) ") ";

}
}
</style><body>
百度
</body>
复制代码

6、给blockquote增加引号
经常常使用到给blockquote 援用段增加庞大的引号作为背景,能够用 ::before 来替代 background 。优点是即能够给背景留下空间,还能够直接运用笔墨而非图片:

复制代码
<meta charset=”utf-8″/>
<style type=”text/css”>

blockquote::before {
content: open-quote;
color: #ddd;
z-index: -1;
font-size:80px;

}
</style>
<blockquote>援用一个段落,双引号用::before伪元素完成</blockquote>
复制代码

7、超链接殊效
举例:合营 CSS定位完成一个鼠标移上去,超链接涌现方括号的结果

复制代码
<meta charset=”utf-8″ />
<style type=”text/css”>
body{

background-color: #425a6c;

}

a {
position: relative;
display: inline-block;
outline: none;
color: #fff;
text-decoration: none;
font-size: 32px;
padding: 5px 20px;

}
a:hover::before, a:hover::after { position: absolute; }
a:hover::before { content: “5B”; left: -10px; }
a:hover::after { content: “5D”; right: -10px; }
</style>
鼠标移上去涌现方括号
复制代码

更多创意链接殊效可参考: Creative Link Effects 。

8、::before和::after完成多背景图片
举例:一个标签运用5张背景图

View Code

原结果来自:Multiple Backgrounds and Borders with CSS 2.1

    原文作者:李钢铁
    原文地址: https://segmentfault.com/a/1190000016236943
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞