使用CSS完成在文本的周?chē)迦雰?nèi)容
發(fā)表時(shí)間:2024-05-15 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]CSS實(shí)現(xiàn)文本周?chē)迦雰?nèi)容的方案本文要討論的是如何在文本的周?chē)迦雸D標(biāo),怎么樣控制它們之間的位置關(guān)系,通過(guò)HTML結(jié)構(gòu)合理性與CSS屬性的使用來(lái)比較不同方案所實(shí)現(xiàn)效果的優(yōu)缺點(diǎn)。常見(jiàn)設(shè)計(jì)稿要求在文本前、后、上、下插入圖標(biāo)、線條、三角形、圓形插入的元素要和文本實(shí)現(xiàn)間距、對(duì)齊(居中、頂部、基線)等位置關(guān)...
CSS實(shí)現(xiàn)文本周?chē)迦雰?nèi)容的方案
本文要討論的是如何在文本的周?chē)迦雸D標(biāo),怎么樣控制它們之間的位置關(guān)系,通過(guò)HTML結(jié)構(gòu)合理性與CSS屬性的使用來(lái)比較不同方案所實(shí)現(xiàn)效果的優(yōu)缺點(diǎn)。
常見(jiàn)設(shè)計(jì)稿要求
理倫知識(shí)
靈活使用display、background等屬性
通過(guò):before
和:after
配合content屬性來(lái)實(shí)現(xiàn)插入內(nèi)容。
通過(guò)absolute、vertical、margin、line-height等屬性實(shí)現(xiàn)文本與符號(hào)位置關(guān)系。
能夠使用CSS屬性畫(huà)出的圖形則用CSS屬性,否則用background屬性顯示背景圖片
實(shí)踐操作
線條
html
<div class="article-block-title">
<h2 class="title">
<span>前端技術(shù)</span><i>前端技術(shù)前端技術(shù)</i>
</h2>
</div>
css
.article-block-title {
height: 44px;
/*實(shí)現(xiàn)文本與豎線對(duì)齊*/
line-height: 44px;
border-left: 3px solid #72b16a;
padding-left: 20px;
}
分析
直接利用該文本的容器使用border-left、border-right、border-top、border-bottom可以分別實(shí)現(xiàn)只顯示文本上、下、左、右的線條。
對(duì)于inline,inline-block等,可使用line-height實(shí)現(xiàn)文本與豎線的居中。
html
<p class="text-info">
<i class="line line-left"></i>resto restaurant home page website template<i class="line line-right"></i>
</p>
css
.text-info .line {
display: inline-block;
width: 40px;
border-top: 1px solid #fff;
/*使橫線居中*/
vertical-align: middle;
/*for IE7*/
*margin-top: 22px;
}
分析
html
<div class="menu-tips">The menu</div>
css
.menu-tips:after {
position: absolute;
left: 0;
bottom: 0;
content: "";
width: 0;
height: 0;
/*menu是156px寬,所以這里設(shè)置78px*/
border-left: 78px solid transparent;
border-right: 78px solid transparent;
border-bottom: 10px solid #fff;
}
分析
圓形
html
<div class="btn-group">
<a href="" class="btn"></a>
<a href="" class="btn active"></a>
<a href="" class="btn"></a>
<a href="" class="btn"></a>
</div>
css
.index-panel-header .btn-group {
float: right;
/*清除行內(nèi)元素的4px空白間距*/
font-size: 0;
}
.index-panel-header .btn {
display: inline-block;
margin-left: 11px;
width: 9px;
height: 9px;
background: #dedede;
/*畫(huà)圓*/
-moz-border-radius: 5px; /* Firefox */
-webkit-border-radius: 5px; /* Safari 和 Chrome */
border-radius:5px; /* Opera 10.5+, 以及使用了IE-CSS3的IE瀏覽器 */
/*for ie7、8*/
position: relative;
z-index:2;
behavior: url(../ie-css3.htc); /* 通知IE瀏覽器調(diào)用腳本作用于'btn'類(lèi) */
}
分析
自定義圖標(biāo)
html
<div class="star-bar">
<span class="star"></span>
<span class="star"></span>
<span class="star"></span>
<span class="star"></span>
<span class="star nostar"></span>
</div>
css
.star-bar {
font-size: 0px;
}
.star {
display: inline-block;
width: 10px;
height: 10px;
margin-right: 5px;
background: url("../images/index-star.png") no-repeat;
}
.nostar {
background-position: 0 -10px;
}
分析
擴(kuò)展的知識(shí)
總結(jié)
以上就是利用CSS實(shí)現(xiàn)在文本的周?chē)迦雰?nèi)容的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語(yǔ),涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。