一些css — 样式
让一行文字多余的部分省略(按....显示)
.overme {
width: 300px;
overflow:hidden;
white-space:nowrap;
text-overflow: ellipsis;
color: red;
}
让footer置于最底
上面的div需要加padding-bottom:50px;
#footer {
position: fixed;
height:50px;
bottom: 0;
width: 100%;
}
让absolute div居中
#content {
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
}