会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Nuyoahr
博客园
首页
新随笔
联系
订阅
管理
2026年9月
shell(2)
摘要: shell(2) 四、echo: ¥ echo 'date'(输出今天的日期) 
评论(0)
推荐(0)
2026年6月
background rgba(0, 0, 0, 0
摘要: background: rgba(0, 0, 0, 0.4); rgba(红, 绿, 蓝, 透明度) 1. rgba 四个参数含义 0 红色通道:0 无红色 0 绿色通道:0 无绿色 0 蓝色通道:0 无蓝色 → 前三组都是 0,混合出黑色 0.4 透明度(alpha):取值范围 0 ~ 1 0 =
阅读全文
posted @ 2026-06-30 15:11 Nuyoahr
阅读(35)
评论(0)
推荐(10)
fiex弹性布局justify-content
摘要: .box{ align-items:flex-start |flex-end | center | baseline |stretch; } 它可能取5个值。具体的对齐方式与交叉轴的方向有关,下面假设交叉轴从上到下。 • flex-start:交叉轴的起点对齐。 • flex-end:交叉轴的终点对
阅读全文
posted @ 2026-06-26 09:27 Nuyoahr
阅读(23)
评论(0)
推荐(9)
使用border-radius属性制作特殊图形
摘要: 使用border-radius属性制作特殊图形 <!DOCTYPE html> <html>31 <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .circle{ width: 200px; height:
阅读全文
posted @ 2026-06-26 09:12 Nuyoahr
阅读(22)
评论(0)
推荐(9)
实现轮播图效果
摘要: 实现轮播图效果 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>轮播图</title> <style type="text/css"> div.content{ margin: 0 auto; width: 200px; } l
阅读全文
posted @ 2026-06-14 16:08 Nuyoahr
阅读(23)
评论(0)
推荐(9)
登录注册
摘要: 登录注册 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } .denglu1 { float: left;
阅读全文
posted @ 2026-06-14 16:06 Nuyoahr
阅读(18)
评论(0)
推荐(7)
2026年5月
常见css属性(1)
摘要: 常见css属性(1) width: 设置元素宽度 height:设置元素高度 padding: 内边距 盒子里面和内容的距离 margin:外边距 盒子和外面其他盒子的距离 -margin:0 auto; 盒子水平居中 overfiow:溢出内容处理 -overflow:hidden; 隐藏超出部分
阅读全文
posted @ 2026-05-31 12:29 Nuyoahr
阅读(28)
评论(0)
推荐(5)
实现网页底部固定长条背景
摘要: 实现网页底部固定长条背景 body{ height: 2000px; background-image:url(img/A64F1C8B363ACFC3FEF6995FC6777D61.jpg); /*背景图片*/ background-repeat: repeat-x; /*背景图片重复*/ ba
阅读全文
posted @ 2026-05-26 10:13 Nuyoahr
阅读(27)
评论(0)
推荐(7)
固定定位+描记
摘要: 固定定位+描记 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>固定定位+描记</title> <style type="text/css"> .main{ height: 3000px; /*padding: 1500px 0
阅读全文
posted @ 2026-05-26 10:13 Nuyoahr
阅读(17)
评论(0)
推荐(3)
固定宽度时,实现字数超出时变成省略号及动态改变css样式
摘要: 4.28 一、固定宽度时,实现字数超出时变成省略号 ①不折叠 white-space: nowrap; ②超出部分隐藏 overflow: hidden ③用省略号表示 text-overflow: ellipsis; 二、如何动态改变css样式 <button>改变背景颜色</button> *{
阅读全文
posted @ 2026-05-06 17:58 Nuyoahr
阅读(25)
评论(0)
推荐(5)
下一页
公告