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

純css3箭頭按鈕樣式

洪振霞2年前9瀏覽0評論

在網(wǎng)頁設計中,箭頭按鈕是一種常見的設計元素之一。為了讓箭頭按鈕更具有時尚感和個性化,我們可以使用CSS3來創(chuàng)建純CSS3箭頭按鈕樣式。

.button {
background-color: #3d3d3d;
border-top: 2px solid #585858;
border-left: 2px solid #585858;
border-bottom: 2px solid #818181;
border-right: 2px solid #818181;
color: #fff;
display: inline-block;
font-size: 16px;
font-weight: bold;
padding: 10px 15px;
position: relative;
}
.button:before {
border-color: transparent transparent #fff transparent;
border-style: solid;
border-width: 10px;
content:"";
display:inline-block;
height: 0;
left: 50%;
margin-left: -10px;
position: absolute;
top: -22px;
width: 0;
}
.button:after {
border-color: #fff transparent transparent transparent;
border-style: solid;
border-width: 10px;
content:"";
display:inline-block;
height: 0;
left: 50%;
margin-left: -10px;
position: absolute;
bottom: -22px;
width: 0;
}

上面的代碼中,我們使用了:before和:after偽元素來創(chuàng)建箭頭。我們通過設置邊框?qū)挾取㈩伾蜆邮絹韯?chuàng)建箭頭的形狀,并使用定位來將他們放在箭頭按鈕的頂部和底部。

此外,我們還設置了按鈕的背景色、字體顏色和內(nèi)邊距,以使其更具可讀性。通過這種方式,我們可以在網(wǎng)頁設計中創(chuàng)建漂亮的箭頭按鈕,無需使用任何圖像或JavaScript。