Quantcast
Channel: part of word bold in css - Stack Overflow
Browsing latest articles
Browse All 6 View Live

Answer by Navin for part of word bold in css

Header tags already have made bold, if you still want to highlight it you can use some other properties like make it Italic, set font-color, etc.,

View Article



Answer by chinloyal for part of word bold in css

<h1>Bold<span style="font-weight: lighter">Not Bold</span></h1>

View Article

Answer by Martijn for part of word bold in css

A header is bold by default, you have to "unbold" it:h1{ font-weight: normal;}<h1>Hello normal <strong>and then bold</strong></h1>

View Article

Answer by jdickel for part of word bold in css

Reset the font-weight of your h1 tagh1{ font-weight: normal;}<h1><strong>BOLD</strong>NOTBOLD</h1>

View Article

Answer by Sudheesh Singanamalla for part of word bold in css

You could do it by setting the font-weight to normal instead of large which is the default font weight. Here's a snippet.h1 { font-weight:normal; }<h1><strong>Bold</strong>Not...

View Article


part of word bold in css

I am trying to highglight part of a title, as you can see above. It doesn't seem to have any effect, how can I achieve what I'm after?<h1> <strong>BOLD</strong>NOTBOLD</h1>

View Article
Browsing latest articles
Browse All 6 View Live




Latest Images