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>
相关推荐
榴莲千丞1 小时前
第8章利用CSS制作导航菜单
前端·css
guokanglun1 小时前
CSS样式实现3D效果
前端·css·3d
NiNg_1_2345 小时前
前端CSS3 渐变详解
前端·css·html
Au_ust6 小时前
css:权重计算
前端·css
前端Hardy7 小时前
HTML&CSS 打造的酷炫菜单选项卡
前端·javascript·css·html·css3
YUJIANYUE7 小时前
原生html+js输入框下拉多选带关闭模块完整案例
javascript·css·html
码手Lion8 小时前
CSS多列布局:打破传统布局的束缚
前端·css
Wx-bishekaifayuan8 小时前
springboot市社保局社保信息管理与分析系统-计算机设计毕业源码03479
java·css·spring boot·spring·spring cloud·servlet·guava
起风的秋天@8 小时前
CSS Modules在框架中的使用
前端·css
王解13 小时前
【深度解析】CSS工程化全攻略(1)
前端·css