盒模型

盒模型

什么盒模型

盒模型_第1张图片

HTML标签分类


盒模型详解


<html>
	<head>
		<meta charset="utf-8">
		<meta name="keywords"  content="html+css">
		<meta name="description"  content="">
		<title>title>
		<style>
			div{
      
				margin:10px  auto 20px;
				/* margin-left:100px; */
				/* margin:50px 20px 40px  80px; */
				/* overflow: hidden; */
				/* padding-top:20px; */
				/* padding:50px 80px 30px 10px; */
				width: 200px;
				height: 200px;
				color:yellow;
				background-color: pink;
				border:20px solid blue;
				border-left-color:transparent;
				border-top-style:dotted;
				border-right-color:red;
				border-bottom-width:40px;
				/* border-top: red double 20px;
				border-left:20px solid blue; */
			}
		
		style>
	head>
	<body>
		<div>div>
		
		
	body>
html>

你可能感兴趣的:(html与css学习)