bootstrap引用图标的方法:
1、下载包并解压,在‘elegant_font’文件夹中会发现“HTML CSS”子文件夹,把它复制到你的项目中。
2、将连接添加到‘style.css’,html里添加一个图标,内容如下:<span class="glyphicon glyphicon-search" aria-hidden="true"></span>,<link rel="stylesheet" href="path/to/elegant-font/style.css">,可以在你HTML里添加图标,并且使用CSS来更改它们的样式:<span aria-hidden="true" class="icon_pencil"></span>。
Bootstrap,来自 Twitter,是目前很受欢迎的前端框架。Bootstrap 是基于 HTML、CSS、JavaScript 的,它简洁灵活,使得 Web 开发更加快捷。
在前台页面设计中,为了实现更好的页面效果,我们可以在超链接文字前加上合适的小图标,从而给用户更好的视觉体验。
[html] view plain copy
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
a{
display:inline-block
width: 100px
height:40px
background: gray url(../img/logo.png) no-repeat fixed 10px center
text-indent:35px
}
</style>
</head>
<body>
<a href="http://www.baidu.com">百度</a>
</body>
</html>
备注:
background 简写属性在一个声明中设置所有的背景属性。
可以设置如下属性:
background-color
background-position
background-size
background-repeat
background-origin
background-clip
background-attachment
background-image
如果不设置其中的某个值,也不会出问题,比如 background:#ff0000 url('smiley.gif')也是允许的。
通常建议使用这个属性,而不是分别使用单个属性,因为这个属性在较老的浏览器中能够得到更好的支持,而且需要键入的字母也更少。
html5 css3样式图标制作方法:
1、html代码:
<div id="boxes">
<div id="boxShortcode">border-radius: 40px (shortcode)</div>
<div id="box1">border-top-right-radius: 40px (same on both axis)</div>
<div id="box2">border-top-right-radius: 20px 40px (x <y) </div>
<div id="box3">border-top-right-radius: 40px 20px (x >y) </div>
</div>
2、css样式代码:
#boxes div { margin-bottom: 20pxheight: 50pxpadding-left: 20px }
#boxShortcode {
background: cyan
border-radius: 40px
}
#box1 {
background: red
border-top-right-radius: 40px
}
#box2 {
background: yellow
border-top-right-radius: 20px 40px
}
#box3 {
background: lime
border-top-right-radius: 40px 20px
}
3、运行结果:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)