go17/skills/web/css/index.css

32 lines
542 B
CSS
Raw Normal View History

2024-12-29 09:26:44 +08:00
.first_title {
color: red;
}
#first_title:hover {
background-color: antiquewhite;
}
.first_title,#first_title {
font-size: 40px;
}
ul>li:first-child {
color: red;
}
[type="submit"] {
font-size: 2em;
}
.flex-test {
height: 60px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fff;
border-bottom:1px solid rgb(229,230,235)
}
#overflowTest {
width: 200px;
height: 200px;
overflow: scroll;
border: 1px solid rgb(150, 18, 18);
}