我是新來的CSS。我有以下樣式的標籤按鈕。如何減少按鈕的高度?我試圖改變它,但它沒有幫助。如何用CSS降低按鈕的高度?
我的代碼:
.tag-btn {
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
color: #fff;
cursor: pointer;
z-index: 5;
position: relative;
padding: 10px;
line-height: 13px;
margin: 0;
height: 40px;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
background-color: #F08080;
border: none;
color: #fff;
box-shadow: none;
}
誰能幫我在這?謝謝。
儘量減少填充和行高 –
您正在使用高度和行高,而且很可能他們在類似的尺寸發生衝突 屏幕上。嘗試移除高度並更改線條高度。 –