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>
相关推荐
珹洺2 小时前
从 HTML 到 CSS:开启网页样式之旅(三)—— CSS 三大特性与 CSS 常用属性
前端·javascript·css·网络·html·tensorflow·html5
爱上语文10 小时前
Axios案例练习
前端·javascript·css·html
粉032111 小时前
用web前端写出一个高校官网
前端·css
夫琅禾费米线15 小时前
CSS 设置宽高的单位概览
前端·javascript·css
潜龙在渊灬20 小时前
纯CSS实现无限轮播banner,这道题你解出来了吗?
前端·css·程序员
蓝桉柒721 小时前
web前端开发--动画效果
开发语言·前端·css
风之舞_yjf1 天前
css基础(27)_行内、行内块元素之间的空白问题
前端·css
WuMingf_1 天前
CSS基础
前端·css
白墨阳1 天前
vue3:scss引用
前端·css·scss
小小优化师 anny1 天前
纯CSS 写的一个树状触摸菜单
前端·css·css3