日韩天天综合网_野战两个奶头被亲到高潮_亚洲日韩欧美精品综合_av女人天堂污污污_视频一区**字幕无弹窗_国产亚洲欧美小视频_国内性爱精品在线免费视频_国产一级电影在线播放_日韩欧美内地福利_亚洲一二三不卡片区

用背景圖片實(shí)現(xiàn)CSS柱狀圖表一例_DIV+CSS實(shí)例

編輯Tag賺U幣
教程Tag:暫無(wú)Tag,歡迎添加,賺取U幣!
我們現(xiàn)在介紹,用背景圖片的方法實(shí)現(xiàn)柱狀圖表�?聪旅娴男Ч麍D:


  實(shí)現(xiàn)這樣的圖表并沒(méi)有什么難處,我們看下面的xhtml代碼:

示例代碼 [www.hl5o.cn]
<div id="vertgraph">
<ul>
<li class="critical" style="height: 150px;">22</li>
<li class="high" style="height: 80px;">7</li>
<li class="medium" style="height: 50px;">3</li>
<li class="low" style="height: 90px;">8</li>
<li class="info" style="height: 40px;">2</li>
</ul>
</div>

  這是一個(gè)無(wú)序列表,我們注重到,我們?cè)趚html中使用行內(nèi)樣式定義了不同的li的高度。
  我們?cè)谶@一圖表的制作中,需要使用兩張圖片,分別如下:




  我們看下面的css代碼:

示例代碼 [www.hl5o.cn]
#vertgraph {
width: 378px;
height: 207px;
position: relative;
background: url("g_backbar.gif") no-repeat;
}
#vertgraph ul {
width: 378px;
height: 207px;
margin: 0;
padding: 0;
}
#vertgraph ul li {
position: absolute;
width: 28px;
height: 160px;
bottom: 34px;
padding: 0 !important;
margin: 0 !important;
background: url("g_colorbar3.jpg") no-repeat !important;
text-align: center;
font-weight: bold;
color: white;
line-height: 2.5em;
}
#vertgraph li.critical { left: 24px; background-position: 0px bottom !important; }
#vertgraph li.high { left: 101px; background-position: -28px bottom !important; }
#vertgraph li.medium { left: 176px; background-position: -56px bottom !important; }
#vertgraph li.low { left: 251px; background-position: -84px bottom !important; }
#vertgraph li.info { left: 327px; background-position: -112px bottom !important; }

  這段CSS代碼就定義了這個(gè)柱狀圖表的顯示,我們需要注重的是background-position屬性的應(yīng)用,這一屬性是實(shí)現(xiàn)圖表的要害.
  我們看最終的運(yùn)行效果:

div css xhtml xml 代碼調(diào)試框 代碼調(diào)試框 [www.hl5o.cn]

[ 可先修改部分代碼 再運(yùn)行查看效果 ]

  

來(lái)源:無(wú)憂整理//所屬分類:DIV+CSS實(shí)例/更新時(shí)間:2007-03-23
相關(guān)DIV+CSS實(shí)例