-
vaunt2009说:
臭氧可消灭新冠病毒吗?
No. Ozone cannot kill the novel coronavirus. It is only effective against bacteria and some types of fungi. To effectively fight the novel coronavirus, it is recommended to practice physical distancing, wear face masks, and wash your hands frequently.
-
guest说:
用html5使用CSS选择器(id选择器、通配符选择器、标记指定式选择器、后代选择器、并集选择器),有针对性设计每个选择器的案例。
使用css盒子模型,设计的盒子模型应用。
- ID选择器:
例如:
#main {
width: 500px;
height: 500px;
background-color: #ccc;
margin: 10px;
padding: 10px;
border: 2px solid #000;
}- 通配符选择器:
例如:
- {
margin: 0;
padding: 0;
box-sizing: border-box;
}
- 标记指定式选择器:
例如:
ul.list {
list-style: none;
padding: 0;
margin: 0;
}- 后代选择器:
例如:
div.container p {
font-size: 12px;
color: #666;
line-height: 1.5;
text-align: center;
}- 并集选择器:
例如:
div.container, div.main {
width: 800px;
margin: auto;
padding: 10px;
background-color: #ccc;
}使用CSS盒子模型,设计的盒子模型应用:
div {
width: 500px;
height: 500px;
border: 1px solid #ccc;
padding: 10px;
margin: 10px;
box-sizing: border-box;
}