CSS如何實現柱狀效果
在一些統計工作中,經常會有柱狀效果圖的應用,非常的形象直觀,下面簡單介紹一下如何實現此種效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> .parent{ width:300px; height:200px; position:relative; } .parent div{ position:absolute; bottom:0px; } .first{ height:180px; width:30px; background-color:green; } .second{ height:140px; width:30px; background-color:blue; left:30px; } .third{ height:130px; width:30px; background-color:yellow; left:60px; } </style> </head> <body> <div class="parent"> <div class="first"></div> <div class="second"></div> <div class="third"></div> </div> </body> </html>
以上程式碼實現了我們的要求,使用的方法是將三個div進行絕對定位實現的,大家可能會想為什麼不用浮動呢,這是因為如果使用浮動的話,div都是上端對齊的,程式碼例項如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> .parent{ width:300px; height:200px; } .parent div{float:left;} .first{ height:180px; width:30px; background-color:green; } .second{ height:140px; width:30px; background-color:blue; } .third{ height:130px; width:30px; background-color:yellow; } </style> </head> <body> <div class="parent"> <div class="first"></div> <div class="second"></div> <div class="third"></div> </div> </body> </html>
當然也可能有這樣的需求,可以根據實際需要採用不同的方法。
相關文章
- CSS實現的柱狀圖效果例項程式碼CSS
- CSS3 - vue中純css實現柱狀圖表效果CSSS3Vue
- jquery實現的豎向動態柱狀條效果jQuery
- CSS 如何實現羽化效果?CSS
- css3實現環狀旋轉效果CSSS3
- css如何實現div全屏效果CSS
- CSS如何實現div的透明效果CSS
- CSS如何實現底線重合效果CSS
- canvas帶有座標的柱狀圖效果Canvas
- 如何基於 echarts 實現區間柱狀圖(包括橫向)?Echarts
- vue實現一個動效柱狀圖Vue
- 柱狀圖多系列php動態實現(ec)PHP
- css 實現打分效果CSS
- css3實現網狀球體效果程式碼例項CSSS3
- CSS實現鏤空效果CSS
- 純 CSS 實現波浪效果!CSS
- 使用 CSS 實現透明效果CSS
- css如何實現div中的文字垂直居中效果CSS
- 【matplotlib 實戰】--柱狀圖
- echart使用自定義單個柱狀顏色實現
- 柱狀圖
- 九、柱狀圖和3D柱狀圖3D
- 純 CSS 實現斜紋效果CSS
- 用css實現視差效果CSS
- CSS實現footer“吸底”效果CSS
- 純CSS實現液晶字型效果CSS
- css3實現翻牌效果CSSS3
- css實現氣泡框效果CSS
- CSS + JS 實現打字機效果CSSJS
- 使用 CSS 實現漸變效果CSS
- Android簡易柱狀圖和曲線圖表實現Android
- 關於如何使用原生HTML + JS + CSS繪製簡單折線柱狀圖HTMLJSCSS
- 棒呆!如何用css3實現煙花綻放效果CSSS3
- css如何實現多行文字在div中垂直居中效果CSS
- 如何實現倒影效果
- CSS實現漂亮的小水球效果CSS
- 用純 CSS 實現鏤空效果CSS
- 奇技淫巧——CSS 實現波浪效果CSS