标签:style blog class code width string
(1)
A.
1
2
3
4 |
<input type= "radio"
name= "bank" > <label> <img src= "..."
alt= "" > </label> |
input和lable自然对齐,label高度显然没有包裹img,如果给img设置vertical-align:middle。则label就会在img垂直中心,input和lable本来就会对齐,那么input也就和img垂直对齐了。
B.
但如下结构就不行了
1
2
3
4
5
6
7 |
<input type= "radio"
name= "bank" > <div class= "bank-list-item" > <label> <img src= "..."
alt= "" > </label> <p>中国银行</p> </div> |
img依然是vertical-align:middle
标签:style blog class code width string
原文地址:http://www.cnblogs.com/yiyang/p/3705269.html