【发布时间】:2023-03-29 15:32:01
【问题描述】:
我正在尝试使按钮 2 看起来与按钮 1 完全一样,并带有边框顶部属性。但我在按钮 2 的三个侧面出现灰线。
css:
.button {
background-color: black;
border-top: 2px solid red;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
font-size: 16px;
outline: none;
}
html:
<a href="#" class="button">Button1</a>
<button class="button">Button2</button>
【问题讨论】:
标签: css