这个地方的金额样式如何实现呢用vue写的页面,整数部分字体比较大,小数部分字体比较小,求大神指教
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.line {
display: flex;
align-items: flex-end;
color: orange;
}
.integer {
font-size: 20px;
line-height: 0.9;
}
.decimal {
font-size: 16px;
line-height: 1;
}
</style>
</head>
<body>
<div class="line">
<span class="integer">82,410</span>
<small class="decimal">.00</small>
</div>
</body>
</html>
10 回答11.7k 阅读
2 回答3.2k 阅读✓ 已解决
2 回答4.3k 阅读✓ 已解决
4 回答4.6k 阅读✓ 已解决
3 回答1.9k 阅读✓ 已解决
5 回答835 阅读
3 回答1.7k 阅读✓ 已解决