博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css例子
阅读量:5101 次
发布时间:2019-06-13

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

6.背景图像渐变的制作

body{
background:#ccc url(xxx.gif)rpeat-x或y;
}

7.给一个区块加上背景

#branding{
width:700px;
height:20px;
background:url(xxx.gif)no-repeat;
}

8.给标题加上一个小图标

h1{
background:url(xxx.gif)no-repeat left center;
padding-left:20px;
}
如果希望使用百分比而不使用关键字,则0.50%这样就实现了垂直居中

9.圆顶角

<div>
<h2>...</h2>
<p>...</p>
</div>

div{

width:320px;
height:180px;
background:#ccc url(xxx.gif)no-repeat left bottom;
}
h2{
background:url(xxx.gif)no-repeat left bottom;
padding-left:40px;
}

10.简单的css阴影效果

<div>
<img src="xxx.jpg" />
</div>
div{
width:250px;
height:343px;
background:url(xxx.gif)no-repeat right bottom;
}
div img{
position:relative;
top:-2px;
left:-2px;
}

1.内边距与外边距

ul{
list-style-type:none;
margin:0;
padding:0;
}

ul{

list-style-type:none;
margin:0;
padding:0;
line-height:150%;
}
ul li{
krgound:url(xxx.gif)no-repeat left center;
padding-left:14px;
}

4.内联

ul与li本是区块
ul加上list-style-type:disc;
li加上display:inline;
可变成内联

5.背景图片和内联列表

ul{
list-style-type:none;
}
li{
display:inline;
background:url(xxx.gif)no-repeat left center;
margin:0 0 0 10px;
padding:0 0 0 15px;
}

6.垂直导航栏

<div>
<ul>
<li><a href="#">drubjs menu</a></li>
</ul>
</div>
ul{
list-style-type:none;
margin:5px;
padding:2px;
width:160px;
font-size:12px;
}
li{
brckground:#ddd;
margin:0;
padding:2px 10px;
border-left:1px solid #fff;
border-top:1px solid #fff;
border-ridht:1px solid #fff;
border-bottom:1px solid #fff;
}

7.创建垂直翻转的列表

ul{
margin:0;
padding:0;
list-style-type:none;
}
ul a{
display:block;
width:200px;
height:40px;
line-height:40px;
color:#000;
text-decoration:none;
background:#94b8e9 url(xxx.gif)no-repeat;
}

 

转载于:https://www.cnblogs.com/yjh1604600160/p/6052055.html

你可能感兴趣的文章
蓝桥杯 九宫格 基础bfs+康托展开
查看>>
iframe与主框架跨域相互访问方法
查看>>
C语言数据结构之栈:括号匹配
查看>>
09 ExpanableListView 的代码例子
查看>>
java序列化与反序列化
查看>>
tomcat进行reload之后类会重新加载不释放,容易导致内存溢出
查看>>
不错的东西: AutoMapper
查看>>
oracle数据库在启动时(startup)报错ORA-00600: 内部错误代码,参数: [kcratr1_lostwrt], [], [], [], [], [], [], []...
查看>>
程序员面试、算法研究、编程艺术、红黑树、数据挖掘5大系列集锦
查看>>
Linux服务器的那些性能参数指标
查看>>
面试高级算法梳理笔记
查看>>
访问服务器,远程访问linux主机
查看>>
Java Day 09
查看>>
走近Java之幕后的String
查看>>
一些比较好的论坛、博客
查看>>
iOS cocoapods 怎么开源代码
查看>>
第十七节:类与对象-属性-类常量-自动加载对象
查看>>
【博客美化小妙招】你希望有一个可爱的看板娘吗?
查看>>
BZOJ.2159.Crash的文明世界(斯特林数 树形DP)
查看>>
c# 设计模式
查看>>