java开发实战(第五天)

  1. 1. html
  2. 2. css

html

1
2
3
4
5
6
7
8
9
10
11
12
13
    <link rel="stylesheet" type="text/css" href="../css/h1.css"><!--通过link标签连接到文件的css样式-->
</head>
<body>
<!--在div上直接写-->
<div class="class01">good</div><!--默认独占一行-->
<div id="id200">good</div><!--id选择器不叠加id<div-->
<div id="id100">good</div>
<span>night</span><!--封装数据的长度-->
<span>night</span>
<p>evening</p><!--上下各空出一行来-->
<p>evening</p>
<p>evening</p>
</body>

css

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

#id100{
border:3px solid rgba(238, 238, 238, 0.349);
height:100%;
background-color:red;
color: azure;
}
#id200,.class01{/*组合选择器*/
border:3px solid rgba(88, 41, 41, 0.349);
height:100%;
background-color:rgb(241, 223, 223);
font-size: 50px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
div{
border:3px solid rgba(0, 253, 190, 0.349);
height:100%;
background-color:rgb(224, 210, 210);

}
span{
border:3px solid rgba(240, 8, 8, 0.349);
height:100%;
background-color:red"
}
p{
border:3px solid rgba(92, 83, 83, 0.349);
height:100%;
background-color:rgb(110, 0, 236);
}

/*注释*/