水平居中实现比较简单,只需使文本对齐方式设为居中即可,代码如下:
垂直居中可能稍微麻烦一点,需要调节文字line-height与div框架的高度相同, overflow:hidden;是为了防止溢出后会超出边框而设的隐藏属性,代码如下:
div.content{
text-align:center;
}
垂直居中可能稍微麻烦一点,需要调节文字line-height与div框架的高度相同, overflow:hidden;是为了防止溢出后会超出边框而设的隐藏属性,代码如下:
div.content{
width:200px;
height:30px;
font-size:16px;
line-height:30px;
overflow:hidden;
}