是通过CSS样式来实现的。可以通过设置div的样式属性来改变按钮的形状和边框样式。
示例代码如下:
<style>
.button {
width: 100px;
height: 40px;
border-radius: 5px;
border: 1px solid #000;
text-align: center;
line-height: 40px;
cursor: pointer;
}
.circle-button {
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid #000;
text-align: center;
line-height: 40px;
cursor: pointer;
}
.custom-shape-button {
width: 0;
height: 0;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
border-left: 40px solid #000;
cursor: pointer;
}
</style>
<div class="button">矩形按钮</div>
<div class="circle-button">圆形按钮</div>
<div class="custom-shape-button">自定义形状按钮</div>
以上代码演示了如何使用div创建不同形状和边框样式的按钮。你可以根据需要自定义样式属性来创建更多样式的按钮。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云