Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
437 views
in Technique[技术] by (71.8m points)

fonts - How do I style a specific word with CSS in an HTML element?

How do I style a specific word within <p> tags? EX: STUDIO X is the best studio ever.

^^How do I, using css, make "STUDIO X" a different font than "is the best studio ever?"

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You should do this:

HTML

<p>
    <span>STUDIO X</span> is the best studio ever
</p>

CSS

p {
    font-size:12px;
}

span {
    font-size:16px;
    font-weight:bold;
}

I recommend you to define a specific class for <p> and <span> tags, it will prevent unexpected overwrites.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...