htmlhtml5我css中怎样能一行多个颜色以及居中还有字体为宋体?
发布网友
发布时间:2022-04-23 18:14
我来回答
共1个回答
热心网友
时间:2023-10-12 12:47
<div class="app">
<span class="red">1</span>
<span class="blue">2</span>
</div>
.app{ height: 30px; line-height: 30px; width: 200px; text-align: center;}
.red{ color: red;}
.blue{ color: blue;}