word-break:break-all 自动强行换行css
word-warp:break-word 也是自动换行 (单个单词不换行)spa
white-space:nowrap 强制不换行code
text-overflow:ellipsis; 溢出的部分隐藏
ip
multiple 选者框里能够多项选择(css)it
display:table-cell text-align:center vertival-align:middle;(居中)io
div垂直居中table
position: absolute; left: 50%; top: 50%;width:200px;height:100px;margin-left:-100px;margin-top:-50px;
<style>class
.parent{margin
width:500px;top
height:500px;
background-color:green;
vertical-align:middle;
display:table-cell;
text-align:center;
}
.children{
width:200px;
height:200px;
background-color:red;
margin:0 auto;
}
</style>