【发布时间】:2014-11-16 22:33:10
【问题描述】:
我想在这四个Buttons 之间放置边距/间距。我在 css 上有点挣扎。以下代码没有给我每个Button 之间的空间。有谁知道我需要改变什么?
练习.html
<div>
<input type="button" id="button0" style="color:black; width:100px; height: 50px" />
<input type="button" id="button1" style="color:black; width:100px; height: 50px" />
<input type="button" id="button2" style="color:black; width:100px; height: 50px" />
<input type="button" id="button3" style="color:black; width:100px; height: 50px" />
</div>
练习.css
.button{
margin: 20px;
}
【问题讨论】:
-
只删除
.button{}中的点,而不是写button{ margin: 20px;}