博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
常用的css缩写
阅读量:6479 次
发布时间:2019-06-23

本文共 1523 字,大约阅读时间需要 5 分钟。

1.字体属性的缩写

font-style:italic;

font-variant:small-caps;

font-weight:bold;

font-size:1em;

line-height:140%;

font-family:”Lucida Grande”,sans-serif;

可以缩写为一句:font:italic small-caps bold 1em/140% “Lucida Grande”,sans-serif;

注意,如果你缩写字体定义,至少要定义font-size和font-family两个值。

2.背景属性的缩写

背景的属性如下:

background-color:#f00;

background-image:url(http://blogbeta.blueidea.com/background.gif);

background-repeat:no-repeat;

background-attachment:fixed;

background-position:0 0;

可以缩写为一句:background:#f00 url(http://blogbeta.blueidea.com/background.gif) no-repeat fixed 0 0;

语法是background:color image repeat attachment position;
你可以省略其中一个或多个属性值,如果省略,该属性值将用浏览器默认值,默认值为:

color: transparent

image: none

repeat: repeat

attachment: scroll

position: 0% 0%

3.填充属性的缩写

margin-left:left;

margin-right:right;

margin-top:top;

margin-bottom:bottm;

以上四行代码可缩写为;margin:top right bottom left;(按顺时针排列)这一行代码;

举例:

margin:10px; 等同于margin:10px 10px 10px 10px;

margin:10px 5px;等同于margin:10px 5px 10px 5px;

margin:10px 3px 5px;等同于margin:10px 3px 5px 3px;

同理:内填充padding属性基本一致;

4.边框属性的缩写

边框的属性如下:

border-width:1px;

border-style:solid;

border-color:#000;

可以缩写为一句:border:1px solid #000;

5.列表属性的缩写

取消默认的圆点和序号可以这样写list-style:none;,

list的属性如下:

list-style-type:square;

list-style-position:inside;

list-style-image:url(http://blogbeta.blueidea.com/image.gif);

可以缩写为一句:list-style:square inside url(http://blogbeta.blueidea.com/image.gif);

注:

原文来自:http://home.blueidea.com/space.php?domain=bluetune

根据自己的理解稍作补充说明以便更易理解;

转载于:https://www.cnblogs.com/Timac/archive/2011/09/05/2167566.html

你可能感兴趣的文章
最全最新个税计算公式---今天你税了吗?
查看>>
linux shell 正则表达式(BREs,EREs,PREs)差异比较(转,当作资料查)
查看>>
MongoDB--CSharp Driver Quickstart .
查看>>
#pragma mark 添加分割线 及 其它类似标记 - 转
查看>>
二分法求平方根(Python实现)
查看>>
使用startActivityForResult方法(转)
查看>>
so在genymotation中错误问题
查看>>
Visual Studio 原生开发的10个调试技巧(二)
查看>>
Windows内核再次出现0Day漏洞 影响win2000到win10所有版本 反病毒软件恐成瞎子
查看>>
H3C品牌刀片系统强势首发
查看>>
【CSS系列】图像映射
查看>>
First blood
查看>>
kernel笔记——网络收发包流程
查看>>
java 冒泡排序和快速排序 实现
查看>>
C# 中获取CPU序列号/网卡mac地址等
查看>>
分析Linux 文件系统访问控制列表
查看>>
spring中的设计模式(二)
查看>>
VMware内存不足解决方案
查看>>
Nginx基础
查看>>
python列表解析和生成表达式浅要说明
查看>>