CSS條狀圖表是我們在網頁設計中常常會遇到的一種形式。條狀圖表可以將數量,以條狀圖形的形式直觀的表示出來。
CSS基本條狀圖表的實現方法是什麼?我們看下面的實例介紹:
以下是引用片段:
<div class="graph">
<strong class="bar" style="width: 24%;">24%</strong>
</div>
這是xhtml代碼,定義了一個容器,應用類graph,其中包括了一個xhtml元素strong,並且對這個元素應用類bar。
我們看下面的CSS定義:
以下是引用片段:
.graph {
position: relative; /* IE is dumb */
width: 200px;
border: 1px solid #B1D632;
padding: 2px;
}
.graph .bar {
display: block;
position: relative;
background: #B1D632;
text-align: center;
color: #333;
height: 2em;
line-height: 2em;
}
.graph .bar span { position: absolute; left: 1em; }
通過上面的邊框,顏色的定義,我們勾勒出了一個條狀的圖形,我們在xhtml代碼中style="width: 24%;",定義了所設置的區域既大小。這樣一個基本的條狀圖表就完成了!
全部代碼:
以下是引用片段:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>homepage.yesky.com</title>
<style type="text/css">
.graph {
position: relative; /* IE is dumb */
width: 200px;
border: 1px solid #B1D632;
padding: 2px;
}
.graph .bar {
display: block;
position: relative;
background: #B1D632;
text-align: center;
color: #333;
height: 2em;
line-height: 2em;
}
.graph .bar span { position: absolute; left: 1em; }
</style>
</head>
<body>
<div class="graph">
<strong class="bar" style="width: 24%;">24%</strong>
</div>
<br />
<div class="graph">
<strong class="bar" style="width: 60%;">60%</strong>
</div>
</body>
</html>