热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

css公共样式插入音乐,【超全】常用的css公共样式

自己做前端也3年了,每次写项目的时候都会遇到一个简单的样式修改却要自己去取一个类名,然后添加样式。而且不同的地方又要复用。所以干脆静下心整理了一下自己在

自己做前端也3年了,每次写项目的时候都会遇到一个简单的样式修改却要自己去取一个类名,然后添加样式。而且不同的地方又要复用。所以干脆静下心整理了一下自己在做项目的时候经常用到的样式。直接添加类名就可以得到自己希望的样式了,既简单也方便维护。大家需要可以保留,直接使用。此份不是基础默认设置。因为基础默认设置网上太多了。看后面是不是需要再整理一份全面的基础默认样式设置。

@mainColor: #609af5;

@red: #ff6a70;

@yellow: #fe930e;

@green: #52c424;

// 字体颜色

.c9 {

color: #999;

}

.c6 {

color: #666;

}

.c-fff,

.c-white {

color: #fff;

}

.c-blue {

color: @mainColor !important;

}

.c-red {

color: @red !important;

}

.c-yellow {

color: @yellow !important;

}

.c-green {

color: @green !important;

}

// 字重

.bold,

.f600 {

font-weight: bold !important;

}

.normal,

.f400 {

font-weight: normal !important;

}

// 字体尺寸

.fz10 {

font-size: 10;

}

.fz12 {

font-size: 12px;

}

.fz14 {

font-size: 14px;

}

.fz16 {

font-size: 16px;

}

.fz18 {

font-size: 18px;

}

.fz20 {

font-size: 20px;

}

.fz22 {

font-size: 22px;

}

.fz24 {

font-size: 24px;

}

.fz26 {

font-size: 26px;

}

.fz28 {

font-size: 28px;

}

.fz30 {

font-size: 30px;

}

.fz32 {

font-size: 32px;

}

// 背景颜色

.bgc-white,

.bgc-fff {

background-color: #fff;

}

.bgc-gery {

background-color: #f2f2f2;

}

.bgc-blue {

background-color: blue;

}

.bgc-yellow {

background-color: @yellow;

}

.bgc-red {

background-color: @red;

}

.bgc-green {

background-color: @green;

}

// 圆角

.bdr2 {

border-radius: 2px;

}

.bdr4 {

border-radius: 4px;

}

.bdr8 {

border-radius: 8px;

}

.bdr50p {

border-radius: 50%;

}

// 布局方式

.flex {

display: flex;

align-items: center;

}

.zhong {

display: flex;

align-items: center;

justify-content: center;

}

.space-between {

display: flex;

justify-content: space-between;

align-items: center;

}

.space-around {

display: flex;

justify-content: space-around;

align-items: center;

}

.flex-warp {

display: flex;

align-items: center;

flex-wrap: wrap;

}

.flex-col {

display: flex;

flex-direction: column;

align-items: flex-start !important;

}

.flex-end {

display: flex;

justify-content: flex-end;

}

.flex-center {

display: flex;

justify-content: center;

}

.db,

.show {

display: block;

}

.dib {

display: inline-block;

}

.hide {

display: none;

}

.fl,

.pull-left {

float: left;

}

.fr,

.pull-right {

float: right;

}

// margin值

.m-5 {

margin: -5px !important;

}

.mt-5 {

margin-top: -5px !important;

}

.mb-5 {

margin-bottom: -5px !important;

}

.ml-5 {

margin-left: -5px !important;

}

.mr-5 {

margin-right: -5px !important;

}

.m0 {

margin: 0px !important;

}

.mt0 {

margin-top: 0px !important;

}

.mb0 {

margin-bottom: 0px !important;

}

.ml0 {

margin-left: 0px !important;

}

.mr0 {

margin-right: 0px !important;

}

.m5 {

margin: 5px !important;

}

.mt5 {

margin-top: 5px !important;

}

.mb5 {

margin-bottom: 5px !important;

}

.ml5 {

margin-left: 5px !important;

}

.mr5 {

margin-right: 5px !important;

}

.m10 {

margin: 10px !important;

}

.mt10 {

margin-top: 10px !important;

}

.mb10 {

margin-bottom: 10px !important;

}

.ml10 {

margin-left: 10px !important;

}

.mr10 {

margin-right: 10px !important;

}

.m15 {

margin: 15px !important;

}

.mt15 {

margin-top: 15px !important;

}

.mb15 {

margin-bottom: 15px !important;

}

.ml15 {

margin-left: 15px !important;

}

.mr15 {

margin-right: 15px !important;

}

.m20 {

margin: 20px !important;

}

.mt20 {

margin-top: 20px !important;

}

.mb20 {

margin-bottom: 20px !important;

}

.ml20 {

margin-left: 20px !important;

}

.mr20 {

margin-right: 20px !important;

}

.m25 {

margin: 25px !important;

}

.mt25 {

margin-top: 25px !important;

}

.mb25 {

margin-bottom: 25px !important;

}

.ml25 {

margin-left: 25px !important;

}

.mr25 {

margin-right: 25px !important;

}

.m30 {

margin: 30px !important;

}

.mt30 {

margin-top: 30px !important;

}

.mb30 {

margin-bottom: 30px !important;

}

.ml30 {

margin-left: 30px !important;

}

.mr30 {

margin-right: 30px !important;

}

.m50 {

margin: 50px !important;

}

.mt50 {

margin-top: 50px !important;

}

.mb50 {

margin-bottom: 50px !important;

}

.ml50 {

margin-left: 50px !important;

}

.mr50 {

margin-right: 50px !important;

}

// padding值

.p0 {

padding: 0 !important;

}

.pt0 {

padding-top: 0 !important;

}

.pr0 {

padding-right: 0 !important;

}

.pb0 {

padding-bottom: 0 !important;

}

.pl0 {

padding-left: 0 !important;

}

.p5 {

padding: 5px;

}

.pt5 {

padding-top: 5px;

}

.pr5 {

padding-right: 5px;

}

.pb5 {

padding-bottom: 5px;

}

.pl5 {

padding-left: 5px;

}

.p10 {

padding: 10px;

}

.pt10 {

padding-top: 10px;

}

.pr10 {

padding-right: 10px;

}

.pb10 {

padding-bottom: 10px;

}

.pl10 {

padding-left: 10px;

}

.p15 {

padding: 15px;

}

.pt15 {

padding-top: 15px;

}

.pr15 {

padding-right: 15px;

}

.pb15 {

padding-bottom: 15px;

}

.pl15 {

padding-left: 15px;

}

.p20 {

padding: 20px;

box-sizing: border-box;

}

.pt20 {

padding-top: 20px;

}

.pr20 {

padding-right: 20px;

}

.pb20 {

padding-bottom: 20px;

}

.pl20 {

padding-left: 20px;

}

.p30 {

padding: 30px;

box-sizing: border-box;

}

.pt30 {

padding-top: 30px;

}

.pr30 {

padding-right: 30px;

}

.pb30 {

padding-bottom: 30px;

}

.pl30 {

padding-left: 30px;

}

.pb50 {

padding-bottom: 50px;

}

.pl50 {

padding-left: 50px;

}

.pl120 {

padding-left: 120px;

}

.pl150 {

padding-left: 150px;

}

.pt50 {

padding-top: 50px;

}

// 文本线格式

.overline {

text-decoration: overline

}

.line-through {

text-decoration: line-through

}

.underline {

text-decoration: underline

}

.blink {

text-decoration: blink

}

// 字体对齐方式

.tac {

text-align: center;

justify-content: center;

}

.tal {

text-align: left !important;

}

.tar {

text-align: right !important;

}

// 宽度

.w10p {

width: 10%;

}

.w20p {

width: 20%;

}

.w25p {

width: 25%;

}

.w30p {

width: 30%;

}

.w40p {

width: 40%;

}

.w50p {

width: 50%;

}

.w60p {

width: 60%;

}

.w70p {

width: 70%;

}

.w75p {

width: 75%;

}

.w80p {

width: 80%;

}

.w90p {

width: 90%;

}

.w100p {

width: 100%;

}

.w20 {

width: 20px;

}

.w25 {

width: 25px;

}

.w50 {

width: 50px;

}

.w75 {

width: 75px;

}

.w100 {

width: 100px;

}

.w125 {

width: 125px;

}

.w150 {

width: 150px;

}

.w175 {

width: 175px;

}

.w200 {

width: 200px;

}

.w210 {

width: 210px;

}

.w220 {

width: 220px;

}

.w250 {

width: 250px;

}

.w275 {

width: 275px;

}

.w300 {

width: 300px;

}

.w325 {

width: 325px;

}

.w350 {

width: 350px;

}

.w375 {

width: 375px;

}

.w400 {

width: 400px;

}

.w450 {

width: 450px;

}

.w500 {

width: 500px;

}

.w600 {

width: 600px;

}

.w750 {

width: 750px;

}

.w1000 {

width: 1000px;

}

// 高度

.h15 {

height: 15px;

}

.h10 {

height: 10px !important;

}

.h20 {

height: 20px !important;

}

.h25 {

height: 25px !important;

}

.h30 {

height: 30px !important;

}

.h40 {

height: 40px !important;

}

.h50 {

height: 50px !important;

}

.h60 {

height: 60px !important;

}

.h70 {

height: 70px !important;

}

.h75 {

height: 75px !important;

}

.h80 {

height: 80px !important;

}

.h90 {

height: 90px !important;

}

.h100 {

height: 100px !important;

}

.h125 {

height: 125px !important;

}

.h150 {

height: 150px !important;

}

.h10p {

height: 10%;

}

.h20p {

height: 20%;

}

.h30p {

height: 30%;

}

.h40p {

height: 40%;

}

.h50p {

height: 50%;

}

.h60p {

height: 60%;

}

.h70p {

height: 70%;

}

.h80p {

height: 80%;

}

.h90p {

height: 90%;

}

.h100p {

height: 100%;

}

.h10vh {

height: 10vh;

}

.h20vh {

height: 20vh;

}

.h30vh {

height: 30vh;

}

.h40vh {

height: 40vh;

}

.h50vh {

height: 50vh;

}

.h60vh {

height: 60vh;

}

.h70vh {

height: 70vh;

}

.h80vh {

height: 80vh;

}

.h90vh {

height: 90vh;

}

.h100vh {

height: 100vh;

}

.h600 {

height: 600px;

}

.h800 {

height: 800px;

}

// 行高

.lh16 {

line-height: 16px;

}

.lh18 {

line-height: 18px;

}

.lh20 {

line-height: 20px;

}

.lh22 {

line-height: 22px;

}

.lh25 {

line-height: 25px;

}

.lh30 {

line-height: 30px;

}

// 定位

.relative {

position: relative;

}

.point {

cursor: pointer !important;

user-select: none;

}

// 文字竖向排列

.column {

margin: 0 auto;

height: 140px;

writing-mode: vertical-lr;

/从左向右 从右向左是 writing-mode: vertical-rl;/

writing-mode: tb-lr;

/IE浏览器的从左向右 从右向左是 writing-mode: tb-rl;/

}

/* 解决文字超出溢出问题 */

.text-cut {

overflow: hidden;

white-space: nowrap;

text-overflow: ellipsis;

-webkit-line-clamp: 2;

-webkit-box-orient: vertical;

}



推荐阅读
  • 在第10天的夜灵HTML日志中,我们深入探讨了浏览器兼容性和高级选择器的应用。CSS3引入了许多新属性,但在旧版浏览器中的支持情况并不理想。然而,目前主流浏览器的最新版本已全面支持这些新特性。对于那些不支持CSS3新属性的浏览器,我们提供了多种解决方案,以确保网站在不同环境下的兼容性和用户体验。此外,我们还详细讨论了如何利用高级选择器提升页面布局的灵活性和可维护性。 ... [详细]
  • 使用jqTransform插件美化表单
    jqTransform 是由 DFC Engineering 开发的一款 jQuery 插件,专用于美化表单元素,操作简便,能够美化包括输入框、单选按钮、多行文本域、下拉选择框和复选框在内的所有表单元素。 ... [详细]
  • 网站访问全流程解析
    本文详细介绍了从用户在浏览器中输入一个域名(如www.yy.com)到页面完全展示的整个过程,包括DNS解析、TCP连接、请求响应等多个步骤。 ... [详细]
  • [转]doc,ppt,xls文件格式转PDF格式http:blog.csdn.netlee353086articledetails7920355确实好用。需要注意的是#import ... [详细]
  • Spring – Bean Life Cycle
    Spring – Bean Life Cycle ... [详细]
  • DAO(Data Access Object)模式是一种用于抽象和封装所有对数据库或其他持久化机制访问的方法,它通过提供一个统一的接口来隐藏底层数据访问的复杂性。 ... [详细]
  • IOS Run loop详解
    为什么80%的码农都做不了架构师?转自http:blog.csdn.netztp800201articledetails9240913感谢作者分享Objecti ... [详细]
  • Ihavetwomethodsofgeneratingmdistinctrandomnumbersintherange[0..n-1]我有两种方法在范围[0.n-1]中生 ... [详细]
  • 本文介绍如何使用 Python 的 DOM 和 SAX 方法解析 XML 文件,并通过示例展示了如何动态创建数据库表和处理大量数据的实时插入。 ... [详细]
  • 实验九:使用SharedPreferences存储简单数据
    本实验旨在帮助学生理解和掌握使用SharedPreferences存储和读取简单数据的方法,包括程序参数和用户选项。 ... [详细]
  • MySQL Decimal 类型的最大值解析及其在数据处理中的应用艺术
    在关系型数据库中,表的设计与SQL语句的编写对性能的影响至关重要,甚至可占到90%以上。本文将重点探讨MySQL中Decimal类型的最大值及其在数据处理中的应用技巧,通过实例分析和优化建议,帮助读者深入理解并掌握这一重要知识点。 ... [详细]
  • PTArchiver工作原理详解与应用分析
    PTArchiver工作原理及其应用分析本文详细解析了PTArchiver的工作机制,探讨了其在数据归档和管理中的应用。PTArchiver通过高效的压缩算法和灵活的存储策略,实现了对大规模数据的高效管理和长期保存。文章还介绍了其在企业级数据备份、历史数据迁移等场景中的实际应用案例,为用户提供了实用的操作建议和技术支持。 ... [详细]
  • DVWA学习笔记系列:深入理解CSRF攻击机制
    DVWA学习笔记系列:深入理解CSRF攻击机制 ... [详细]
  • 基于 Vue 和 Element UI 实现的简洁登录界面设计
    本文介绍了一种利用 Vue.js 和 Element UI 框架构建的简洁登录界面设计。该设计不仅注重用户体验,还确保了界面的美观性和易用性。通过合理的布局和组件配置,实现了高效、响应式的登录功能,适用于多种前端应用场景。 ... [详细]
  • 在HTML5应用中,Accordion(手风琴,又称抽屉)效果因其独特的展开和折叠样式而广泛使用。本文探讨了三种不同的Accordion交互效果,通过层次结构优化信息展示和页面布局,提升用户体验。这些效果不仅增强了视觉效果,还提高了内容的可访问性和互动性。 ... [详细]
author-avatar
甜甜deX
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有