如何将 elementor pro wordpress 中的文本固定到左侧

发布于 2025-01-12 19:10:45 字数 345 浏览 1 评论 0原文

我如何更改此设置:(照片)

在此处输入图像描述

为此:(照片)

(!) 不适用于:文本对齐、文本对齐等。

在此处输入图像描述

How I can change this : (photo)

enter image description here

To this: (photo)

(!) Dosen't work with: text-align, text-justify, etc.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流心雨 2025-01-19 19:10:45

我相信通过创建自定义 html 表来实现这一目标的最佳方法

table{
  border: 1px solid #ddd;
}

.second{
  width: 35%;
  border-left:1px solid #ddd;
}
<table style="width: 100%;" border="0">
    <tbody>
      <tr>
        <td>Item 1</td>
        <td class="second">44
lt;/td>
      </tr>
      <tr>
        <td>Item 2</td>
        <td class="second">$55</td>
      </tr>
      <tr>
        <td >Item 3</td>
        <td class="second">$66</td>
      </tr>
      <tr>
        <td>Item 4</td>
        <td class="second">$88</td>
      </tr>
      <tr>
        <td>Item 5</td>
        <td class="second">$99</td>
      </tr>
      </tbody>
</table>
    <!-- DivTable.com -->

I believe that the best way to achieve that by creating a custom html table

table{
  border: 1px solid #ddd;
}

.second{
  width: 35%;
  border-left:1px solid #ddd;
}
<table style="width: 100%;" border="0">
    <tbody>
      <tr>
        <td>Item 1</td>
        <td class="second">44
lt;/td>
      </tr>
      <tr>
        <td>Item 2</td>
        <td class="second">$55</td>
      </tr>
      <tr>
        <td >Item 3</td>
        <td class="second">$66</td>
      </tr>
      <tr>
        <td>Item 4</td>
        <td class="second">$88</td>
      </tr>
      <tr>
        <td>Item 5</td>
        <td class="second">$99</td>
      </tr>
      </tbody>
</table>
    <!-- DivTable.com -->

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文