美文网首页
css奇技淫巧

css奇技淫巧

作者: 王瓷锤 | 来源:发表于2019-12-04 16:11 被阅读0次
  1. 每种字体的默认行高不同,字体设计师会在字体文件中设置
  2. 文字在行尾中断转下行——word-break: break-all
  3. 单行文字溢出省略

white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;

  1. 两行非连续文字两端对齐:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style>
.father{
font-size:20px;
border:1px solid;
text-align:justify;
}
span{
display:inline-block;
border:1px solid transparent;
width:5em;
height:25px;
overflow:hidden;
}
span::after{
content:"";
display:inline-block;
width:100%;
border:5px solid blue;
}
</style>
</head>
<body>
<div class="father">
<span>姓名</span>

<span>联系方式</span>
</div>
</body>
</html>

image.png

相关文章

网友评论

      本文标题:css奇技淫巧

      本文链接:https://www.haomeiwen.com/subject/nzekgctx.html