【问题标题】:Include several text format commands in html在 html 中包含几个文本格式命令
【发布时间】:2020-08-15 17:24:48
【问题描述】:

非常基本的问题:我想将文本居中对齐并为 gorilla 软件增加 html 中的字体大小,但我似乎找不到方法。

这是两个单独的命令:

<p style="font-size: 150%;">This is my text. %</p>'

<p style="text-align: center;">This is my text.</p>

我尝试了类似的方法,但没有成功:

<p style="font-size: 150%;" style="text-align: center;">This is my text. %</p>

谢谢

【问题讨论】:

    标签: html format gorilla


    【解决方案1】:

    要回答您的问题,请使用分号

    <p style="font-size: 150%; text-align: center;">This is my text. %</p>
    

    但更好 - 使用类和样式表:

    .bigCenter {
      font-size: 150%;
      text-align: center;
    }
    &lt;p class="bigCenter"&gt;This is my text. %&lt;/p&gt;

    【讨论】:

      猜你喜欢
      • 2012-04-05
      • 2014-05-26
      • 2019-09-07
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-03-07
      • 1970-01-01
      相关资源
      最近更新 更多