40 lines
849 B
HTML
40 lines
849 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>display</title>
|
|
<style>
|
|
/*清除标签的默认样式*/
|
|
body,
|
|
ul {
|
|
margin: 0;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
.box_1 {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: red;
|
|
display: inline-block;
|
|
}
|
|
.box_2 {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: blue;
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="box_1">div标签</div>
|
|
<a href="" class="box_2">a标签</a>
|
|
<a href="" class="box_2">a标签</a>
|
|
</body>
|
|
|
|
</html> |