Styling rich text blocks in Webflow allows you to add various formatting elements to your text, making it visually engaging and organized. With HTML styling elements like for bold, for underline,
- and
- for lists, and
,
, etc. for subheaders, you can achieve a professional look for your content.
Using the tag for bold text
If you want to make certain words or phrases stand out in your rich text block, you can use the tag. This tag is used to apply bold formatting to the enclosed text. For example:
<p>This is a <b>bold</b> word.</p>
This will render as: “This is a bold word.”
Using the tag for underline
If you want to emphasize certain words or phrases with an underline, you can use the tag. It applies an underline effect to the enclosed text. For example:
<p>This is an <u>underlined</u> word.</p>
This will render as: “This is an underlined word.”
Create lists with the
- and
- tags
In many cases, you may want to create a list within your rich text block. You can achieve this using the unordered list element (
- ) in combination with list item elements (
- ). Here’s an example:
<ul> <li>List item 1</li> <li>List item 2</li> <li>List item 3</li> </ul>
This will render as:
- List item 1
- List item 2
- List item 3
Using subheaders with the appropriate heading tags
If you want to structure your content with subheadings, you can use heading tags such as
,
, etc. These tags define the hierarchy of your headings, with
being the highest level and
being the lowest level. Here’s an example:
<h2>Subheading</h2> <p>This is a paragraph under the subheading.</p> <h3>Another Subheading</h3> <p>This is a paragraph under another subheading.</p>
Subheading
This is a paragraph under the subheading.
Another Subheading
This is a paragraph under another subheading.
By utilizing these HTML styling elements, you can enhance and structure your rich text blocks in Webflow. Remember to use them sparingly and consistently to create visually engaging and organized content.