頂級經典常用的CSS屬性收集整理_經驗交流

來源:互聯網
上載者:User
文本左右對齊:
複製代碼 代碼如下:

text-align:justify;
text-justify:inter-ideograph;


清除浮動:
複製代碼 代碼如下:

.clear{clear:both;line-height:0;height:0;font-size:0;}


清除浮動偽類:
複製代碼 代碼如下:

.clearfix:after{content: ".";display: block;height: 0;clear: both;visibility: hidden;}


設定不讓單詞斷開
複製代碼 代碼如下:

word-break : keep-all


字元自動換行
複製代碼 代碼如下:

word-break:keep-all;word-break:break-all;word-wrap:break-word


使用 line-height 垂直置中

複製代碼 代碼如下:

line-height:24px;/*使用固定寬度的容器並且需要一行垂直置中時,使用 line-height 即可(高度與父層容器一致),更多的垂直置中總結可以看這裡。
*/


清除容器浮動

複製代碼 代碼如下:

#main {overflow:hidden;}


不讓連結折行

複製代碼 代碼如下:

a {white-space:nowrap;}


始終讓 Firefox 顯示捲軸

複製代碼 代碼如下:

html {overflow:-moz-scrollbars-vertical;}

使塊元素水平置中

複製代碼 代碼如下:

body, html {min-height:101%;}或者margin:0 auto;


隱藏 Exploer textarea 的捲軸

複製代碼 代碼如下:

textarea {overflow:auto;}


設定列印分頁
複製代碼 代碼如下:

h2 {page-break-before:always;}/*設定列印網頁時的分頁*/


刪除連結上的虛線框
複製代碼 代碼如下:

a,area { blr:e­xpression(this.onFocus=this.blur()) }
:focus { -moz-outline-style: none; }

最簡單的 CSS 重設
複製代碼 代碼如下:

* {margin: 0; padding: 0}/*此屬性慎用,雖然能消除預設屬性,但是對瀏覽器渲染有影響,而且在語義化表達上也欠佳。*/


圖片斷行符號後打文字需要屬性

複製代碼 代碼如下:

img{vertical-align:top;}

透明屬性

複製代碼 代碼如下:

filter:alpha(opacity=50); -moz-opacity: 0.5; opacity: 0.5;
cursor:hand;


滑鼠換成手的形狀
複製代碼 代碼如下:

cursor:hand;
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.