如何只在行中增加一个单词的字体大小?

时间:2011-01-21 12:39:06

标签: html css

我必须在普通字体大小的句子中间增加单词的大小。

<p class="call">To book a consultation click here or call NOW</p>

如何在CSS中放大NOW字?如果我创建新段落,该单词将转到新行。 任何建议表示赞赏

3 个答案:

答案 0 :(得分:22)

<p class="call">To book a consultation click here or call <span class='bigger'>NOW</span></p>

使用CSS

.bigger { font-size:200%; }

答案 1 :(得分:5)

  1. 决定为什么你希望它更大(关键是HTML是描述语义,而不是演示,所以你需要考虑这种事情)
  2. 编写适当的语义标记
  3. 应用CSS
  4. 也许:

    <p class="call">To book a consultation click here or call <em>now</em></p>
    

    并在样式表中:

    em {  /* or .call em, but you should aim for consistency in your styling */
        font-style: normal;
        font-size: 120%;
        text-transform: uppercase;
    }
    

答案 2 :(得分:-2)

这也行

<p> This is some <b> TEXT </b><p>