css CSS片段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSS片段相关的知识,希望对你有一定的参考价值。

/* Author: https://gist.github.com/jacks0n
   Source:  https://gist.github.com/jacks0n/513e0f3a8532363890d3 */

/* Text colours */
.text-white { color: white; }
.text-black { color: black; }

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.text-nowrap { white-space: nowrap; }

/* Text transformation */
.text-lowercase { text-transform: lowercase; }
.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }

/* Floats */
.pull-left { float: left !important; }
.pull-right { float: right !important; }

/* Visibility */
.show { display: block !important; }
.hide {
    display: none !important;
}

/* Clearfix */
.clearfix:before,
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    zoom: 1; /* IE < 8 */
    clear: both;
}

/* Display */
.visible-block { display: block !important; }
.visible-inline { display: inline !important; }
.visible-inline-block { display: inline-block !important; }

以上是关于css CSS片段的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段7——CSS动画

VSCode自定义代码片段7——CSS动画

VSCode自定义代码片段——CSS选择器

VSCode自定义代码片段6——CSS选择器

css CSS片段

css CSS网格片段