当前位置:网站首页>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
边栏推荐
- Leetcode question brushing (XI) -- sequential questions brushing 51 to 55
- 第3章:类的加载过程(类的生命周期)详解
- Assembly and Interface Technology Experiment 6 - ADDA conversion experiment, AD acquisition system in interrupt mode
- 将MySQL的表数据纯净方式导出
- Volatile keyword
- UDP programming
- Daily question 1: force deduction: 225: realize stack with queue
- [IELTS speaking] Anna's oral learning record part1
- 变量与“零值”的比较
- OpenCV VideoCapture. Get() parameter details
猜你喜欢

Spatial domain and frequency domain image compression of images

Aardio - 利用customPlus库+plus构造一个多按钮组件

二分图判定

Hardware development notes (10): basic process of hardware development, making a USB to RS232 module (9): create ch340g/max232 package library sop-16 and associate principle primitive devices

自制J-Flash烧录工具——Qt调用jlinkARM.dll方式
![pytorch_ Yolox pruning [with code]](/img/98/31d6258635ce48ac53819d0ca12d1d.jpg)
pytorch_ Yolox pruning [with code]

【编译原理】做了一半的LR(0)分析器

基于 QEMUv8 搭建 OP-TEE 开发环境

MySQL ---- first acquaintance with MySQL

RESNET rs: Google takes the lead in tuning RESNET, and its performance comprehensively surpasses efficientnet series | 2021 arXiv
随机推荐
0 basic learning C language - interrupt
在IPv6中 链路本地地址的优势
新手程序员该不该背代码?
pytorch_YOLOX剪枝【附代码】
What are the specific steps and schedule of IELTS speaking?
每日一题:力扣:225:用队列实现栈
C# 三种方式实现Socket数据接收
树的先序中序后序遍历
uniapp滑动到一定的高度后固定某个元素到顶部效果demo(整理)
枚举与#define 宏的区别
RESNET rs: Google takes the lead in tuning RESNET, and its performance comprehensively surpasses efficientnet series | 2021 arXiv
AdaViT——自适应选择计算结构的动态网络
空结构体多大?
MySQL教程的天花板,收藏好,慢慢看
网络基础入门理解
手写ABA遇到的坑
[Digital IC hand tearing code] Verilog burr free clock switching circuit | topic | principle | design | simulation
视图(view)
剪映+json解析将视频中的声音转换成文本
leetcode:面试题 17.24. 子矩阵最大累加和(待研究)