欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 房产 > 建筑 > css 文字两端对齐

css 文字两端对齐

2024/11/30 10:40:50 来源:https://blog.csdn.net/lryh_/article/details/139803400  浏览:    关键词:css 文字两端对齐
<body><div class="box"><p>姓名</p><p>性与别</p><p>家庭住址</p><p>how are you</p><p>hello</p><p>1234</p><p>1 2 3 4</p></div>
</body>
  • text-align: justify;
  • text-align-last: justify;
<style>.box {display: flex;justify-content: center;align-items: center;flex-direction: column;width: 500px;height: 500px;border: 1px solid #000;}p {width: 130px;border: 1px solid #000;text-align: justify;text-align-last: justify; /*兼容ie*/text-justify: distribute-all-lines;}</style>

 

  •  设置 text-align: justify;  伪元素 after或者 before的样式,伪元素中可以添加width:100%  或padding-left:100%
<style>.box {display: flex;justify-content: center;align-items: center;flex-direction: column;width: 500px;height: 500px;border: 1px solid #000;}p {height: 30px;width: 130px;border: 1px solid #000;text-align: justify;}p::after {content: "";display: inline-block;/* width: 100%; */padding-left: 100%;}</style>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com