p { overflow : hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2;//規定可現實幾行 -webkit-box-orient: vertical; }
<div class="parent"> <div class="child"> 垂直居中 </div> </div> <style> .parent{ display:table; width:500px; height:500px; } .child{ display: table-cell; vertical-align: middle; } </style>
子元素元素table-cell高寬填充整個父元素css
傳統 pc 端中,子容器高度超出父容器高度,一般使用 overflow:auto 可出現滾動條拖動顯示溢出的內容,而移動web開發中,因爲瀏覽器廠商的系統不一樣、版本不一樣,致使有部分機型不支持對彈性滾動,從而在開發中製造了所謂的 BUG。html
.css{ overflow:auto;/* winphone8和android4+ */ -webkit-overflow-scrolling: touch; /* ios5+ */ }
詳細可參考: 移動web頁面支持彈性滾動的3個方案android
&:after { content: ''; border: Size(13) solid transparent; border-left-color: #fff;//方向 width: 0; height: 0; position: absolute; top: 0; right: Size(-30); @include verticalCenter(); }
歡迎你們踊躍補充!
持續更新......ios