我想從這個圖像創建一個風格DIV盒子,我的網站: 如何從此圖像製作可垂直擴展的DIV框?
我怎樣才能做到這一點使用CSS和HTML。
我砍了圖像在三個不同的部分:
但是我不知道如何使用它們與Divs創造我的垂直消耗箱。
感謝您的幫助!
我想從這個圖像創建一個風格DIV盒子,我的網站: 如何從此圖像製作可垂直擴展的DIV框?
我怎樣才能做到這一點使用CSS和HTML。
我砍了圖像在三個不同的部分:
但是我不知道如何使用它們與Divs創造我的垂直消耗箱。
感謝您的幫助!
試試這個: HTML:
<div class="container">
<div class="top"></div>
<div class="middle">content here content here content here</div>
<div class="bottom"></div>
</div>
CSS:
.container { width: 300px; }
.top { padding-top: 15px; background: url(topimage.png); }
.middle { background: url(middleimage.png); }
.bottom { padding-bottom: 15px; background: url(bottomimage.png); }
調整墊襯的CSS,使它們符合您topimage和底圖的高度和容器的寬度,使它匹配圖像的寬度。
使用三個獨立的div,並將中間的頂部填充設置爲頂部的頂部填充高度。所以:
#top-div {
height: 25px;
background-image: url(bg-top.jpg);
}
#middle-div {
background-image: url(bg-middle.jpg);
padding-top: -25px;
}
#bottom-div {
background-image: url(bg-bottom.jpg);
}
我假設你希望你的前一個內啓動,但擴展到第二個爲好。如果是這種情況,那麼你需要在背景圖像上重疊一些。
HTML
<div class="expandable">
<div class="content top">content goes here</div>
<div class="bottom"></div>
</div>
CSS
.expandable{
background:url('middle-image.jpg') 0 0 repeat-x;
}
.top{
background:url('top-image.jpg') 0 0 no-repeat;
height:auto!important;
height:100px;/* whatever the height of the top (big) area is */
min-height:100px; /* whatever the height of the top (big) area is */
}
.bottom{
background:url('bottom-image.jpg') 0 0 no-repeat;
height:10px; /* whatever the height of the bottom image is. */
}
謝謝,這是最好的非CSS3的例子!不過,我會嘗試使用PIE的CSS3。 – benjisail 2010-12-07 10:17:18
@benjisail,你可以選擇最適合你的情況,最適合將來的維護。 Css3pie似乎是這種情況;) – 2010-12-07 10:32:35
謝謝,我不得不通過添加min-height:98px和.top的不重複來修改它。然而,使用這個解決方案,我該如何開始在框的頂部寫文本而不是98px? – benjisail 2010-12-07 09:23:25