CSS 学习(3) 盒子模型 盒子的组成 border边框,content内容,padding内边距,margin外边距。 边框(border) border-with:边框的粗细(一般情况下使用px为单位),未指定边框样式没法显示。 border-style:边框的样式(solid实线,dashe ...
分类:
Web程序 时间:
2021-07-05 16:49:11
阅读次数:
0
box-sizing:border-box; border:20px solid transparent; background-clip:padding-box,border-box; background-origin:padding-box,border-box; background-ima ...
分类:
其他好文 时间:
2021-07-02 16:17:27
阅读次数:
0
div{ width: 0px; border: 30px solid transparent; border-left-color: tomato;} 第二种方法 div{ margin: auto; width: 0px; border-top: 20px solid transparent; ...
分类:
其他好文 时间:
2021-06-28 19:45:26
阅读次数:
0
1.table布局 <div class="box"> <p>前端开发真不错,就是智商跟不上</p> <p>前端开发真不错,就是智商跟不上</p> </div> .box { width: 300px; height: 200px; border: 1px solid #000; display: ...
分类:
Web程序 时间:
2021-06-11 18:21:11
阅读次数:
0
溢出属性 p { height: 100px; width: 50px; border: 3px solid red; /*overflow: visible; !*默认就是可见 溢出还是展示*!*/ /*overflow: hidden; !*溢出部分直接隐藏*!*/ /*overflow: sc ...
分类:
Web程序 时间:
2021-06-02 19:21:22
阅读次数:
0
1. 水平居中(margin: auto;)子父元素宽度固定,子元素上设置 margin: auto; 子元素不能设置浮动,否则居中失效。 #div1{ width: 300px; height: 300px; border: 1px solid red; } #div1 p { width: 10 ...
分类:
Web程序 时间:
2021-05-24 15:08:56
阅读次数:
0
刚开始了解这方面不久......看着别人的回答盲人摸象般成功了,希望能给各路大佬一点参考 参考:https://www.zhihu.com/question/31459186 我只做了这一步,JAVA HOME什么的都没删,鼠标选中后利用旁边的上移和下移键移动,确认后重启电脑 我的solid wor ...
分类:
编程语言 时间:
2021-04-26 13:26:03
阅读次数:
0
1.仅水平居中: 1.1行内元素水平居中:text-align 1 <head> 2 <style> 3 #box { 4 width: 200px; 5 height: 200px; 6 border: 1px solid red; 7 /* 行内元素水平 */ 8 text-align: cen ...
分类:
其他好文 时间:
2021-04-12 12:06:07
阅读次数:
0
父元素:box1,子元素:box2; 持续补充中。。。。。 一、子div定宽高 1. flex布局 .box1{ width: 300px; height: 300px; border: 1px solid red; display: flex; align-items: center; } .bo ...
分类:
其他好文 时间:
2021-04-01 13:41:10
阅读次数:
0
技术纲1:根据计算机体系 自底向上 梳理的大纲 一级分类二级分类三级分类要点说明链接 架构 设计哲学 架构 架构-演进历史 架构 架构-微服务设计模式 架构 架构-DDD 设计模式 面向对象SOLID原则 设计模式 21款开发设计模式 中间件 容错-熔断 中间件 容错-限流 中间件 监控-JVM 中 ...
分类:
编程语言 时间:
2021-02-09 12:34:35
阅读次数:
0