首页
友情链接
留言
统计
推荐
计算机网络技术视频
华为ensp视频
Linux服务器视频
Windows服务器视频
Search
1
华为ICT概述
47 阅读
2
神州数码设备命令大全
37 阅读
3
Windows server使用命令行形式安装林根级域和加入域
27 阅读
4
kali换国内源
26 阅读
5
rocky(Linux),配置DNS服务器和备用DNS服务器
23 阅读
网络技术
Windows服务器
Linux服务器
网络设备
前端
html
css
JavaScript
技能大赛
网络建设与运维
信息安全与评估
网络系统管理
实用工具
宝藏网站
登录
/
注册
Search
标签搜索
JavaScript
css
网络安全
html
宝藏网站
实用工具
网络设备
网络技术
Linux服务器
kali
网络建设与运维
windows服务器
技能大赛
公告
网络系统管理
信息安全与评估
ctf
渝
累计撰写
207
篇文章
累计收到
3
条评论
首页
栏目
网络技术
Windows服务器
Linux服务器
网络设备
前端
html
css
JavaScript
技能大赛
网络建设与运维
信息安全与评估
网络系统管理
实用工具
宝藏网站
页面
友情链接
留言
统计
推荐
计算机网络技术视频
华为ensp视频
Linux服务器视频
Windows服务器视频
搜索到
146
篇与
的结果
2024-09-30
43、不透明性
<!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=1.0"> <title>opacity</title> <style> .box1{ width: 200px; height: 200px; background-color: orange; font-size: 40px; opacity: 0.5; font-weight: bold; } </style> </head> <body> <div class="box1">你好啊</div> </body> </html>
2024年09月30日
6 阅读
0 评论
0 点赞
2024-09-30
41、怪异盒子的使用
<!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=1.0"> <title>使用</title> <style> .father{ width: 900px; height: 300px; background-color: yellow; margin: 0 auto; } .box div{ width: 300px; height: 300px; float: left; text-align: center; } </style> </head> <body> <div class="father"> <div>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dignissimos amet nesciunt consectetur voluptate assumenda! Bland itiis perferendis sed ducimus, atque in eaque porro ipsa dig nissimos, nisi beatae dolore fugiat, molestias architecto?</div> <div>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Molestiae commodi eligendi incidunt, minima ipsam necessitatib s? Quos nulla ipsum doloremque earum libero. Est aliquam eu m ullam nesciunt, voluptatibus dolores error dolorem.</div> <div>Lorem ipsum dolor sit amet consectetur adipisicin g elit. Accusantium tenetur veniam quam ratione ver ? Deserunt aliquid accusantium aliquam fugit sed in s unt, explicabo tenetur earum aspernatur cupiditate aut amet maxime.</div> </div> </body> </html>
2024年09月30日
4 阅读
0 评论
0 点赞
2024-09-30
40、怪异盒子
<!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=1.0"> <title>怪异盒子的概念</title> <style> /* 怪异盒子的宽度是加内边距和边框 box-sizing 可选值: content-box{默认值} border-box{挤压内部} */ .box1{ width: 200px; height: 200px; background-color: red; padding: 30px; border: 10px solid black; /*标准盒模型*/ box-sizing: content-box; } .box2{ width: 200px; height: 200px; background-color: green; margin-top: 100px; padding: 30px; border: 10px solid black; /*怪异盒模型*/ box-sizing: border-box; } </style> </head> <body> <div class="box1"></div> <div class="box2"></div> </body> </html>
2024年09月30日
3 阅读
0 评论
0 点赞
2024-09-30
39、导航栏
<!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=1.0"> <title>导航栏</title> <style> .nav{ width: 800px; height: 40px; background-color:#008080; margin:0 auto; padding: 0; } .nav li{ list-style:none; float: left; height: 40px; line-height: 40px; } .nav a{ text-decoration:none; color: orange; font-size: 20px; display: block; padding: 0px 30px; } .nav a:hover{ background-color:green; } </style> </head> <body> <ul class="nav"> <li> <a href="#">网站首页</a> </li> <li> <a href="#v3">专业教程</a> </li> <li> <a href="#v4">作品展示</a> </li> <li> <a href="#v7">家乡山水</a> </li> </ul> </body> </html>
2024年09月30日
5 阅读
0 评论
0 点赞
2024-09-30
38、渐变
<!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=1.0"> <title>渐变</title> <style> /* 一、渐变:使背景颜色逐渐变化的效果 1.线性渐变 background-image: linear-gradient(to top ,#c7edcc,#fde6e0,#dce2f1); 第一个参数可选值为: to top/right/botton/top right/... 第二个参数到第n个参数为需要渐变的颜色,至少两种颜色 2.径向渐变 background: radial-gradient(ellipse,#c7edcc 50%,#fde6e0); 第一个参数可选值为: circle 圆形 ellipse 椭圆形 第二个参数到第n个参数为需要渐变的颜色,至少两种颜色 */ .box1{ width: 300px; height: 300px; margin: 0 auto; /*background-image: linear-gradient(90deg ,#c7edcc,#fde6e0,#dce2f1);*/ background: radial-gradient(ellipse,#c7edcc 50%,#fde6e0); } </style> </head> <body> <div class="box1"></div> </body> </html>
2024年09月30日
5 阅读
0 评论
0 点赞
1
...
18
19
20
...
30