gpt4 book ai didi

css - 如何在 html5 中使按钮居中?

转载 作者:太空宇宙 更新时间:2023-11-04 14:37:56 24 4
gpt4 key购买 nike

如何在 html5 中使按钮居中?通过修改css文件。我不想在 html 代码中使用中心标记。

a.read{
padding:10px 20px;
font-size:14px;
line-height:20px;
background-color:#eba73c;
text-align:center;
color:#fff;
border-radius:5px;
text-decoration:none;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-align:center;
display:inline-block;
clear:both
}

最佳答案

您可以将这些样式应用于 anchor 以使其成为 block 级,分配宽度,然后像这样调整其边距:

a.read{
display:block;
width:100px;
margin:0 auto;
}

或者将它应用到它的父元素:

.parent{
text-align:center;
}

关于css - 如何在 html5 中使按钮居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21799032/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com