css 如何将回车键的位置更改为页面中心?

czfnxgou  于 2023-01-27  发布在  其他
关注(0)|答案(4)|浏览(109)

如何将按钮从页面的顶角移到页面的中心

.button {
  background-color: rgb(168, 229, 70);
  width: 200px;
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
  border: 3px solid yellow;
  color: white;
  text-align: center;
}
<a href="">
  <div class="button">enter</div>
</a>
<!--insert a link that take to a page that has info about the developers
    -->

我不知道该怎么做?

4bbkushb

4bbkushb1#

添加此内容应该可以完成此操作

.button {
      display: block;
      margin: auto; }
mwg9r5ms

mwg9r5ms2#

这将使您的按钮进入页面的中心。

.center{
  height : 100vh;
  width : 100vw;
  display : grid;
  align-items : center;
  justify-content : center;
}
<div class="center">
<button><a href="https://stackoverflow.com">Hi There</a></button>
</div>
0sgqnhkj

0sgqnhkj3#

您可以添加以下内容:
.按钮{

margin: auto;

}
或者这个:

.button {
    margin-left:25%;
    margin-right:25%;
}
omtl5h9j

omtl5h9j4#

.button {
  background-color: rgb(168, 229, 70);
  width: 200px;
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
  border: 3px solid yellow;
  color: white;
  text-align: center;
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%)
}
<a href="">
  <div class="button">enter</div>
</a>
<!--insert a link that take to a page that has info about the developers
    -->

相关问题