HTML blockquote indentation syntax
When writing an article, I occasionally use indentation techniques to make the article more integrated. In HTML article layout, you can use the <blockquote> tag to achieve the indentation effect, and repeated use can indent more units. This technique can also be used in blog posts. Take a look at the following examples to know how to use it!
Example 1: HTML blockquote indentation syntax, only one unit
<blockquote>Here is the indented text</blockquote>
Use only one set of <blockquote> tags to include the text so that you can indent by one unit.
Example 2: HTML blockquote indentation syntax, indented by two units
<blockquote><blockquote>Here is indented text</blockquote></blockquote>
From Example 2 we can see that we used two <blockquote> tags at a time. Compared with Example 1, the indentation distance of two units has been successfully reduced. You can also try multi-unit indentation, just use more <blockquote> The label can be wrapped layer by layer.
Post a Comment
0 Comments