当前位置:网站首页>Xiaobai programmer's sixth day
Xiaobai programmer's sixth day
2022-07-25 22:20:00 【Too difficult L】
JD right navigation bar

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
ul {
list-style: none;
position: fixed;
top: 100px;
right: 0px;
}
li {
width: 38px;
height: 38px;
line-height: 19px;
font-size: 14px;
padding: 10px;
text-align: center;
border: 0px solid #333;
font-weight: bold;
transition: color .2s ease;
}
li:hover{
background: #e1251b;
}
li>a{
text-decoration: none;
color: #333;
}
li:hover a{
color: white;
}
div{
height: 600px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<ul>l
<li><a href="#miaosha"> Jingdong seckill </a></li>
<li><a href="#tese"> Features </a></li>
<li><a href="#guangchang"> Channel square </a></li>
<li><a href="#tuijian"> Recommended for you </a></li>
<li><a href="#kefu"> Customer service </a></li>
<li><a href="#fankui"> feedback </a></li>
</ul>
</body>
</html>
边栏推荐
猜你喜欢
随机推荐
开户就可以购买收益在百分之六以上的理财产品了吗
Redis基础2(笔记)
Tfrecord write and read
力矩电机控制基本原理
Xiaobai programmer's first day
自动化测试岗花20K招人,到最后居然没一个合适的,招两个应届生都比他们强吧
Ts:typera code fragment indentation display exception (resolved) -2022.7.24
Win10 set up a flutter environment to step on the pit diary
在进行自动化测试,遇到验证码的问题,怎么办?
Redis memory elimination mechanism?
突破性思维在测试工作中的应用
Unity performance optimization direction
Method of converting MAPGIS format to ArcGIS
Usage of in in SQL DQL query
QML module not found
数学规划分类 Math Programming Classfication
完啦,上班三个月,变秃了
What is the difference between minor GC and full GC?
Leetcode 106. construct binary tree from middle order and post order traversal sequence
【数据库学习】Redis 解析器&&单线程&&模型









