这个地方的金额样式如何实现呢用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.1k 阅读
5 回答4.8k 阅读✓ 已解决
4 回答3.1k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
3 回答5.1k 阅读✓ 已解决
3 回答1.9k 阅读✓ 已解决
2 回答4.7k 阅读✓ 已解决