定义标签的高度
.height{
position:absolute;
top : 0;
bottom : 0;
}
定义标签的宽度
.width{
position:absolute;
left : 0;
right : 0;
}
此和宽度100%一样
.height{
position:absolute;
top : 0;
bottom : 0;
}
.width{
position:absolute;
left : 0;
right : 0;
}
此和宽度100%一样