总结一下:padding和margin的区别,padding在边框里,margin在边框外。
2015-02-11
<input type="submit" value="提交" />
2015-02-10
<input type="checkbox" name="sport2" id="Mountaineering" />
<br />
<label for="Basketball">篮球</label>
<input type="checkbox" name="sport3" id="Basketball">
<br />
<label for="Basketball">篮球</label>
<input type="checkbox" name="sport3" id="Basketball">
2015-02-10
<form>
<label >你对什么运动感兴趣:</label><br />
<label for="Jogging">慢跑</label>
<input type="checkbox" name="sport1" id="Jogging" />
<br />
<label for="Mountaineering">登山</label>
<label >你对什么运动感兴趣:</label><br />
<label for="Jogging">慢跑</label>
<input type="checkbox" name="sport1" id="Jogging" />
<br />
<label for="Mountaineering">登山</label>
2015-02-10
父元素用position:relative 子元素用position:absolute 再设置
left,top,bottom,right就可以叠在父元素上了。
left,top,bottom,right就可以叠在父元素上了。
2015-02-10