Files
ClassContent/历届学生/zheng-yuqing/项目练习/上课项目/js案例/css/tabs.css
2024-09-27 02:06:13 +08:00

15 lines
203 B
CSS

.tabs_title {
display: flex;
}
.tabs_title li {
margin-right: 15px;
}
.tabs_title .active {
color: red;
}
.tabs_content li {
display: none;
}
.tabs_content .active {
display: block;
}