📅  最后修改于: 2023-12-03 14:51:51.254000             🧑  作者: Mango
在前端开发中,我们经常需要使用文本按钮,而 CSS 提供了多种方式来创建文本按钮。接下来,我们将会介绍几种方法。
在 HTML 中,a 标签本来就是用来创建链接的,不过通过 CSS 的样式修改,可以将其变成文本按钮。
<a href="#" class="button">按钮</a>
.button {
display: inline-block; /* 将 a 标签设为块级元素 */
background-color: #4caf50;
color: #fff;
padding: 10px 20px;
text-align: center;
text-decoration: none; /* 去掉下划线 */
font-size: 16px;
font-weight: bold;
border-radius: 5px;
}
button 标签是专门用来创建按钮的标签,通过样式修改可以实现文本按钮的效果。
<button class="button">按钮</button>
.button {
background-color: #4caf50;
color: #fff;
padding: 10px 20px;
text-align: center;
text-decoration: none;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
border: none; /* 去掉边框 */
cursor: pointer; /* 鼠标指针设为手型 */
}
span 标签本来是用来装文本的,通过样式修改也可以实现文本按钮的效果。
<span class="button">按钮</span>
.button {
display: inline-block;
background-color: #4caf50;
color: #fff;
padding: 10px 20px;
text-align: center;
text-decoration: none;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
}
无论使用哪种方法创建文本按钮,都需注意以下几点:
cursor: pointer
将鼠标指针设为手型,提高用户体验。border-radius: 5px
可以将按钮的边角变为圆角,美观度更高。以上就是几种使用 CSS 创建文本按钮的方法,希望能对你有所帮助。