1、在html编辑器软件内,新建html页面,(一般我们常使用的两款编辑器是HBuilder和Adobe Dreamweaver,这里我使用的软件是HBuilder)。
2、在<body></body>添加<div class="nav"></div>,于<div class="nav"></div>中间添加<ul></ul>,在<ul>内添加<li>标签,<li>内同时添加<a>标签,方便连接导航跳转。
3、在新建的<a></a>内,添加横向导航要显示的内容。
4、在<title></title>下方添加一个<style type="text/css"></style>。
5、源文件html保存后,使用浏览器打开预览效果。
改变浏览器默认的滚动条样式:
//滚动条凹槽的颜色,还可以设置边框属性
::-webkit-scrollbar-track-piece{
background-color:#f8f8f8
}
//滚动条的宽度
::-webkit-scrollbar{
width:9px
height:9px
}
//滚动条的设置
::-webkit-scrollbar-thumb{
background-color:#dddddd
background-clip:padding-box
min-height:28px
}
::-webkit-scrollbar-thumb:hover{
background-color:#bbb
}
扩展资料:
给某个div,class为test1加滚动条样式:
.test1::-webkit-scrollbar{
width:8px
}
.test1::-webkit-scrollbar-track{
background-color:red
-webkit-border-radius:2em
-moz-border-radius:2em
border-radius:2em
}
.test1::-webkit-scrollbar-thumb{
background-color:green
-webkit-border-radius:2em
-moz-border-radius:2em
border-radius:2em
}