完美的中间按钮在页面中间

时间:2015-08-19 07:21:03

标签: html css button center

代码

<!DOCTYPE html>
<html>
<head>
<title>Google Maps</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<style type="text/css">
#button {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
height: 30px;
width: 200px;
left: 50%;
top: 50%;
position: absolute;
}
</style>
</head>
<body>
<input type="button" id="button" value="Open Map" />
</body>
</html>

我不确定如何正确地将按钮正确地居中在页面中间。我尝试使用左和前50%;但这并不能完美地将按钮放在页面中间。感谢。

这是下面附带的演示工作代码。

Demo code Check Out

4 个答案:

答案 0 :(得分:3)

除了一些改变之外,你已经完成了所有事情:

margin-top: -15px;   /* = -height / 2   */
margin-left: -100px; /* = -width / 2    */
position: fixed;     /* Fixed is better */

<强>段

&#13;
&#13;
#button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 30px;
  width: 200px;
  left: 50%;
  top: 50%;
  margin-top: -15px;   /* = -height / 2   */
  margin-left: -100px; /* = -width / 2    */
  position: fixed;     /* Fixed is better */
}
&#13;
<input type="button" id="button" value="Open Map" />
&#13;
&#13;
&#13;

答案 1 :(得分:0)

给按钮margin-left:-width-of-the-button/2。 在你的情况下:

margin-left:-100px;
margin-top:-15px;

答案 2 :(得分:0)

如果按钮只是要设置为居中的正文中的元素。然后将输入字段添加到div / span ..然后在css Number

下面应用

如果整个身体需要居中,那么span/div { text-align:center; } #button { position:absolute; top:50%; }

答案 3 :(得分:0)

你可以使用一个容器来更容易操作。

这就是我所做的:

#button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    height: 30px;
    width: 200px;

    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.container {
    width:100%;
    height:100%;
    background-color:yellow;
    position:absolute;
    text-align:center;
}

Here is the JSFiddle demo