
网页之路
web之路
LHNC
大四再不努力学习工作技能,准备吃土了!
展开
-
纸牌翻转(html+css)
以下为 html 代码<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>塔罗牌动画</title> <link rel="stylesheet" href="style/style.css"></head><body> <div> <img class="ka01" src="i...原创 2022-05-16 22:57:28 · 2752 阅读 · 2 评论 -
动物相册(拖动窗口自适应)
grid + flex以下为html代码<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale...原创 2022-05-15 14:15:48 · 172 阅读 · 0 评论 -
CSS设置让导航栏在顶部不移动
#menuList{ height: 50px; width: 100%; border-top: 3px solid red; background: #fff; position: fixed; top: 0; z-index: 9999; /*非常重要*/}原创 2022-05-03 19:26:14 · 1201 阅读 · 0 评论 -
CSS定位属性 position
一、概述position :值为static之外的其他值时,称元素为定位元素static:初始值 reletive:相对定位 absolute:绝对定位(创建BFC) fixed:原创 2022-05-01 19:55:48 · 382 阅读 · 0 评论