【发布时间】:2015-12-01 18:36:29
【问题描述】:
我想知道如何在我的页面上居中对齐我的输入。谢谢
<body>
<input id="ask" type="text" placeholder = "Ex: how tall is the Gateway Arch" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Ex: how tall is the gateway arch'"/>
<style type="text/css">
#ask {
padding: 10px 10px 10px 6px;
font-size:45px;
background-color:#FAFAFA;
min-width: 500px;
padding: 0 auto;
border: 0 none;
</style>
</body>
【问题讨论】: