2023年11月6日

flex布局

摘要: 常见属性 display:定义一个元素是否为弹性容器。 display: flex:将元素设置为弹性容器。 display: inline-flex:将元素设置为内联弹性容器。 flex-direction:指定弹性容器的主轴方向。 flex-direction: row:主轴水平,项目从左到右排列 阅读全文

posted @ 2023-11-06 20:19 双友 阅读(11) 评论(0) 推荐(0) 编辑

CSS选择器

摘要: 元素选择器 /* 使用元素选择器为所有段落元素应用样式 */ p { color: blue; font-size: 16px; text-align: center; margin: 10px; padding: 5px; background-color: #f0f0f0; } 类选择器 /* 阅读全文

posted @ 2023-11-06 20:18 双友 阅读(41) 评论(0) 推荐(0) 编辑

导航