欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

怎么用css做淘寶首頁欄

阮建安2年前7瀏覽0評論

淘寶首頁欄是淘寶網站重要的頁面組成部分之一,如何使用CSS來實現淘寶首頁欄呢?下面介紹一下具體的實現方法:

/* 首先需要對頁面進行重置 */
html, body, div, h1, h2, p, a, img, ul, ol, li, form, input, button {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
font-style: normal;
vertical-align: baseline;
}
/* 下面開始進行具體的布局 */
/* 外層容器,布局整體 */
#topbar {
height: 30px;
background: #f40;
font-size: 12px;
line-height: 30px;
color: #fff;
text-align: center;
position: relative;
}
/* 左側圖標 */
.topbar-left {
width: 90px;
position: absolute;
left: 0;
top: 0;
bottom: 0;
margin: auto;
}
.topbar-left img {
vertical-align: middle;
}
/* 右側鏈接 */
.topbar-right {
position: absolute;
right: 0;
top: 0;
bottom: 0;
margin: auto;
}
.topbar-right a {
display: inline-block;
margin-left: 15px;
color: #fff;
text-decoration: none;
vertical-align: middle;
}

以上代碼實現了淘寶首頁欄的布局。需要注意的是,整個欄目的布局采用絕對定位,左側圖標和右側鏈接使用了絕對定位,整個欄目容器使用了相對定位,并設置了高度、背景色、字體大小和顏色等樣式屬性。左側圖標和右側鏈接內的圖標和文字使用了display:inline-block和vertical-align:middle屬性來實現水平垂直居中的效果。