当前位置:网站首页>2014 Alibaba web pre intern project analysis (1)
2014 Alibaba web pre intern project analysis (1)
2022-07-06 22:33:00 【Full stack programmer webmaster】
Hello everyone , I meet you again , I'm the king of the whole stack .
Following simplification CSS Code :
div.container{
width:500px;
background-image:url(/img/sprite.png);
background-repeat:no-repeat;
background-position:0px -78px;
}
div.container ul#news-list,div.container ul#news-list li{
margin:0px;padding:0px;
}
div.container ul#news-list li{
padding-left:20px;
background-image:url(/img/sprite.png);
background-position:-120px opx;
}
A{
font-size:14px;
font-weight:bold;
line-height:150%;
color:#000000;
}answer :
div.container{ width:500px; background-image:url(/img/sprite.png); background-repeat:no-repeat; background-position:0px -78px;}div.container ul#news-list,div.container ul#news-list li{ margin:0px;padding:0px;}div.container ul#news-list li{ padding-left:20px; background-image:url(/img/sprite.png); background-position:-120px opx;}A{ font-size:14px; font-weight:bold; line-height:150%; color:#000000;}div.container{ width:500px; background:url(/img/sprite.png) no-repeat 0 -78px;}#news-list,#news-list li{ margin:0 padding:0;}#news-list li{ padding-left:20px;background:url(/img/sprite.png)no-repeat -120px 0;}analysis :CSS Brief introduction to usage
(1)CSS in font Abbreviation :
font:italicsmall-capsbold12px/1.5emarial,verdana; Equivalent to :
font-style:italic;font-variant:small-caps;font-weight:bold;font-size:12px;line-height:1.5em;font-family:arial,verdana;The order :font-style|font-variant|font-weight|font-size|line-height|font-family
(2)CSS in background Abbreviation :
background:#fffurl(bg.gif)no-repeatfixedlefttop; Equivalent to :
background-color:#fff;background-image:url(bg.gif);background-repeat:no-repeat;background-attachment:fixed;background-position:lefttop;The order :background-color|background-image|background-repeat|background-attachment|background-position
(3)CSS in margin&padding Abbreviation :
border:1pxsolid#000; Equivalent to :
border-width:1px;
border-style:solid;
border-color:#000;The order :border-width|border-style|border-color
(4)CSS in list-style Abbreviation :
list-style:squareoutsideurl(bullet.gif); Equivalent to :
list-style-type:square;
list-style-position:outside;
list-style-image:url(bullet.gif)The order :list-style-type|list-style-position|list-style-image
(5) The abbreviations of four sides are generally as follows :
padding:1px2px3px4px; Equivalent to :
padding-top:1px;
padding-right:2px;
padding-bottom:3px;
padding-left:4px;The order :top|right|bottom|left Regardless of the border width . Or border color 、 Margin, etc , Just CSS The style involves four sides . The sequence is all “ On the lower left ”( clockwise ).
5.1) Suppose the values of four sides omit one . Just write three :
padding:1px2px3px; Is equivalent to omitted “ The left value ” be equal to “ Right value ”:
padding-top:1px;
padding-right:2px;
padding-bottom:3px;
padding-left:2px;5.2) Suppose the values of four sides omit two :
padding:1px2px; Equivalent to : The left value omitted is equal to the right value . The upper value equals the lower value
padding-top:1px;
padding-right:2px;
padding-bottom:1px;
padding-left:2px;5.3) There is only one value
Padding:1px: Equivalent to :
padding-top:1px;
padding-right:1px;
padding-bottom:1px;
padding-left:1px;Copyright notice : This article is the original article of the blogger , Blog , Do not reprint without permission .
Publisher : Full stack programmer stack length , Reprint please indicate the source :https://javaforall.cn/116989.html Link to the original text :https://javaforall.cn
边栏推荐
- 0 basic learning C language - digital tube
- Applet system update prompt, and force the applet to restart and use the new version
- poj 1094 Sorting It All Out (拓扑排序)
- Notes de développement du matériel (10): flux de base du développement du matériel, fabrication d'un module USB à RS232 (9): création de la Bibliothèque d'emballage ch340g / max232 SOP - 16 et Associa
- const关键字
- Self made j-flash burning tool -- QT calls jlinkarm DLL mode
- MySQL约束的分类、作用及用法
- 变量与“零值”的比较
- Windows Auzre 微软的云计算产品的后台操作界面
- Advantages of link local address in IPv6
猜你喜欢

config:invalid signature 解决办法和问题排查详解

手写ABA遇到的坑

视图(view)

Attack and defense world miscall

Leetcode: interview question 17.24 Maximum cumulative sum of submatrix (to be studied)

Leetcode question brushing (XI) -- sequential questions brushing 51 to 55

Build op-tee development environment based on qemuv8

每日一题:力扣:225:用队列实现栈

自制J-Flash烧录工具——Qt调用jlinkARM.dll方式

CocosCreator+TypeScripts自己写一个对象池
随机推荐
2022-07-04 mysql的高性能数据库引擎stonedb在centos7.9编译及运行
Chapter 3: detailed explanation of class loading process (class life cycle)
MySQL数据库基本操作-DML
【数字IC手撕代码】Verilog无毛刺时钟切换电路|题目|原理|设计|仿真
ThreadLocal详解
UDP编程
Seata aggregates at, TCC, Saga and XA transaction modes to create a one-stop distributed transaction solution
自制J-Flash烧录工具——Qt调用jlinkARM.dll方式
雅思口语的具体步骤和时间安排是什么样的?
Spatial domain and frequency domain image compression of images
(18) LCD1602 experiment
Export MySQL table data in pure mode
i. Mx6ull build boa server details and some of the problems encountered
Unity3d minigame unity webgl transform plug-in converts wechat games to use dlopen, you need to use embedded 's problem
关于声子和热输运计算中BORN电荷和non-analytic修正的问题
机试刷题1
新手程序员该不该背代码?
sizeof关键字
做国外LEAD2022年下半年几点建议
Leetcode exercise - Sword finger offer 26 Substructure of tree