浅谈网页布局

目录

一、网页布局

二、padding和margin

三、box模型

四、行内元素与块元素

五、行内元素的对齐

六、相对位置定位

注意:相对定位,并不是相对于父元素,而是相对于自己原有的正常位置

七、绝对位置定位

八、固定位置定位

position: fixed常用于悬浮窗口


一、网页布局

<div>,division,划分、层

<div>是网页布局的主要工具,使用div将网页划分为一块一块的的区域

如:

另外:布局相关的属性

width/height

margin/padding

display

position

z-index

.......

<div>网页布局最常用的标签

 

二、padding和margin

padding : 填充-子元素与自己的距离

margin : 边距-自己与外部元素的距离

 

三、box模型

.test1
{
	border: 4px solid blue;
	margin: 8px;
	padding: 16px;
	width: 200px;
	height: 50px;
}

注:

box-sizing : border-box  (content+padding+border)

box-sizing : content-box 

演示:

.test1
{
	border: 4px solid blue;
	margin: 8px;
	padding: 16px;
	width: 200px;
	height: 50px;
	box-sizing: content-box;
}

另外还需注意浏览器的兼容性

.test1
{
	border: 4px solid blue;
	margin: 8px;
	padding: 16px;
	width: 200px;
	height: 50px;
	
	box-sizing: border-box;  /*标准属性Chrome,IE*/
	-moz-box-sizing: border-box; /*FireFox*/
	-webkit-box-sizing: border-box; /*Safari*/
}

注意:

不同标签的默认box-sizing是不同的

例如:

<button>默认为box-sizing: border-box

<div>默认为box-sizing: content-box

 

四、行内元素与块元素

比如     <label>不能设置长宽;  <div>默认占满一行

设置他们需要display属性 

display,用于控制是行内元素、还是块元素

演示:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>Box模型</title>
		<style></style>
	</head>
	<body>
		<label style="border: 1px solid blue; width: 200px;">Java</label>
		<label style="border: 1px solid blue; width: 200px;">C++</label>
		
		<div style="border: 1px solid blue; width: 200px;">久森你好</div>
		<div style="border: 1px solid blue; width: 200px; ">Jiusennihao.cn</div>
	</body>
</html>

效果:

常见的四种设置:

display: inline行内元素,不可以设置宽度和高度,根据字体长短默认
display: block块元素,独占一行
display: inline-block行内块元素,可以设置大小,而且不占一行
display: none不占用任何空间(隐藏)

 

效果:

【1】display: inline:

【2】display: block

【3】display: inline-block

【4】display: none

最终代码:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>Box模型</title>
		<style></style>
	</head>
	<body>
		<label style="border: 1px solid blue; width: 200px; display: inline-block;">Java</label>
		<label style="border: 1px solid blue; width: 200px;display:  none;">C++</label>
		
		<div style="border: 1px solid blue; width: 200px;display: block;">久森你好</div>
		<div style="border: 1px solid blue; width: 200px; display:  inline;">Jiusennihao.cn</div>
	</body>
</html>

 

五、行内元素的对齐

效果:

实现居中+垂直布局

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>网页布局基础</title>
		<style>
			.container
			{
				width: 600px;
				height: 300px;
				border: 1px solid blue;
				text-align:  center;
				line-height: 300px;  /*注意设置line-height为行高*/
			}
		</style>
	</head>
	<body>
		
		<div class="container">
			<button style="vertical-align: top;">按钮一</button>
			<button style="vertical-align: middle;">按钮二</button>
			<button style="vertical-align: bottom;">按钮三</button>
		</div>
	</body>
</html>

六、相对位置定位

position属性是实现复杂布局的有效手段

注意:相对定位,并不是相对于父元素,而是相对于自己原有的正常位置

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>网页布局基础</title>
		<style>
			.main
			{
				width: 640px;
				height: 400px;
				border: 1px solid mediumblue;
				margin: 100px;
			}
			
			.div1
			{
				width: 100px;
				height: 100px;
				background-color: #B22222AA;  /*半透明颜色*/
			}
			
			.div2
			{
				width: 100px;
				height: 100px;
				background-color: #ADFF2Faa;  /*半透明颜色*/
				
				position: relative;
				left: 50px;
				top: 50px;
			}
			
			.div3
			{
				width: 200px;
				height: 200px;
				background-color: #BA55D3AA;  /*半透明颜色*/
			}
		</style>
	</head>
	<body>
		
		<div class="main">
			<div class="div1">1</div>
			<div class="div2">1</div>
			<div class="div3">1</div>
		</div>
	</body>
</html>

七、绝对位置定位

图:

position: absolute

-要说明相对于谁...向上找父级或父级的父级、第一个有position: absolute/relative属性的...

-通常都给父元素添加relative属性

-脱离Normal Flow,原有位置被后来者挤占

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>网页布局基础</title>
		<style>
			.main
			{
				width: 640px;
				height: 400px;
				border: 1px solid mediumblue;
				margin: 100px;
				
				position: relative;
			}
			
			.div1
			{
				width: 100px;
				height: 100px;
				background-color: #B22222AA;  /*半透明颜色*/
			}
			
			.div2
			{
				width: 100px;
				height: 400px;
				background-color: #ADFF2Faa;  /*半透明颜色*/
				
				position: absolute;
				left: 50px;
				top: 50px;
			}
			
			.div3
			{
				width: 200px;
				height: 200px;
				background-color: #BA55D3AA;  /*半透明颜色*/
			}
			
			.div4
			{
				width: 100px;
				height: 100px;
				background-color: #0000CDAA;  /*半透明颜色*/
				
				position: absolute;
				bottom: 10px;
				right: 10px;
			}
		</style>
	</head>
	<body>
		
		<div class="main">
			<div class="div1">1</div>
			<div class="div2">2</div>
			<div class="div3">3</div>
			<div class="div4">4</div>
		</div>
	</body>
</html>

八、固定位置定位

固定:position: fixed:

相对于浏览器窗口

比如:

浏览网页时的广告或者回到顶部等操作

通常与z-index联用,防止被其他div覆盖

position: fixed常用于悬浮窗口

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值