此问题在此处已有答案:
Border-radius in percentage (%) and pixels (px) or em(3个答案)
3天前关闭。
我希望我的按钮有一个形状就像它在堆栈溢出产品按钮。enter image description here
我试过边界半径,但是它不够大。我试过搜索其他选项,但是我没有找到或者不理解。这是我的CSS
nav > ul > li:hover {
background-color: #dfdfe2;
color: #1b1b32;
cursor: pointer;
border-radius: 40%;
}
li > a {
color: inherit;
text-decoration: none;
}
nav > ul {
display: inline-block;
vertical-align: middle;
padding: 0.2%;
margin: 0.7%;
1条答案
按热度按时间yjghlzjz1#
您需要如下所示添加
padding
和border-radius
,并移除您在:hover
上给定的边界半径