gpt4 book ai didi

css - 按键中心定位

转载 作者:太空宇宙 更新时间:2023-11-04 03:21:52 25 4
gpt4 key购买 nike

我在将按钮居中放置在表格的一行中时遇到问题。我使用了宽度和边距,但它不起作用。你能帮我吗?这是该按钮的代码(在 css 中):

 .subm {
position:relative;
width:130px;
margin-left:auto;
margin-right:auto;
background-image:url('background.bmp');
border:none;
color:white;
opacity:1;
height:25px;
outline:0 none;
box-shadow:1px 1px 2px black

}
.subm:hover {
background-image:none;
background-color:darkgray;
box-shadow:10px 10px 10px black
}

.subm:active {
color:black ;
font-weight:bold;
width:128px;
height:24px;
background-image:none;
background-color:dimgray;
}

最佳答案

简单地试试这个

button{
height:20px;
width:100px;
position:relative;
top:50%;
left:50%;
}

对于水平对齐,可以使用

button{
margin: 0 auto;
}

DEMO

关于css - 按键中心定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27757328/

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