码迷,mamicode.com
首页 >  
搜索关键字:margin-top    ( 725个结果
Qt样式表属性
QT 样式表属性大全 Box样式 width:宽度 height:高度 max-width:最大宽度 max-height:最大高度 min-width:最小宽度 min-height:最小高度 margin:边距尺寸 margin-top margin-right margin-bottom ma ...
分类:其他好文   时间:2020-01-07 00:28:48    阅读次数:139
Flex实现左右布局
html css 这里把高度都给限制死了。 可以换一个思路,通过设置margin top来处理竖向空间。 ...
分类:其他好文   时间:2020-01-06 19:18:21    阅读次数:110
3.1 margin-top塌陷
3.1.1 在两个盒子嵌套时,内部的盒子设置的margin-top会加到外部的盒子上,导致内部盒子的margin-top设置失败,解决方法如下: 1.外部盒子设置一个边框 2.外部盒子设置一个overfow:hidden 3.使用伪元素类 <html lang="en"> <head> <meta ...
分类:其他好文   时间:2020-01-04 10:28:12    阅读次数:66
【前端】锚点定位到导航栏下方
1.获取导航栏的高度(outerHeight:会计算包括margin,padding等外层的高度) var gd = $("#daoHangLan").outerHeight(); 2.设置要跳转到的div的高度 $(".div").css({"margin-top":-gd});//设置margi ...
分类:其他好文   时间:2019-12-31 12:31:52    阅读次数:87
jq写 验证码与点击60秒后重新发送验证码
一.html部分 <div class="f21">获取验证码</div> 二.css部分 //不要忘记引入自己写的css .f21{ height: 36px; line-height: 35px; width: 125px; margin-right: 55px; margin-top: 20p ...
分类:其他好文   时间:2019-12-31 12:19:02    阅读次数:77
css盒子模型
.father{ width:300px; height:300px; background-color:red; margin-top:100px } .son{ width:200px; height:200px; background-color:green; margin-top:20px ...
分类:Web程序   时间:2019-12-29 16:52:26    阅读次数:61
四宫格div
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .main01 div{ float: left; margin-top: 10px; margin-left: ... ...
分类:其他好文   时间:2019-12-27 11:25:51    阅读次数:102
html元素定位原理
<div id="A"> <div id="A1"></div> <div id="A2"></div> </div> 1)absolute 绝对定位 A1是A的子元素,在A1中写绝对定位是相对于A来确定位置的。而且A1相对于浮起来,不占空间。margin-top:20px;是相对于A顶上的边的距离 ...
分类:Web程序   时间:2019-12-25 20:46:17    阅读次数:109
改良版 导航栏自动跟随
css部分: .container { /*最外层div定宽*/ position: relative; width: 15rem; height: 1rem; margin-top: 20rem; } .con { /*第二层div,设置溢出为滚动条*/ overflow-x: scroll; o ...
分类:其他好文   时间:2019-12-16 17:44:55    阅读次数:94
实现垂直水平居中的方法
1. 定位 top 50% left 50% (1) 知道宽高的情况下margin-left margin-top 给个 ( -1/2 宽高 ) (2) 不知道的请况 translate(-50%,-50%) 2. flex display:flex; (1) 水平方向 justify-conten ...
分类:其他好文   时间:2019-12-16 15:06:22    阅读次数:135
725条   上一页 1 ... 6 7 8 9 10 ... 73 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!