我的Html如下,
<html>
<head>
</head>
<body>
<label>Name : </label>
<input type="text" id="user" />
<button id="submit"> Hit Me !!</button>
</body>
<p id="id1"> This is paragraph which has id1.</p>
<p id="id2"> This is paragraph which has id2.</p>
<button id="change"> To Change Color !!</button>
</html>
这只是我代码的一小部分,我的HTML中有很多按钮标记。我想把所有的按钮都放在屏幕中央(水平(。我还为所有按钮创建了相同的CSS。那么,在CSS中写什么,这样我就可以把所有的按钮都放在中心了?
button{
margin-left:auto;
margin-right:auto;
}
在所有按钮的CSS文件中