Introduction to HTML
tag

(*-*)浩
Release: 2019-12-04 14:39:19
Original
2488 people have browsed it

HTML

tag

Introduction to HTML <blockquote> tag

##All major browsers support the
tag.

Note: No browser displays the cite attribute correctly. (Recommended learning:

html tutorial)

Definition and usage

##
tag defines a block quote.

##All text between

and
will be separated from the regular text, often with indentation (increased margins) on the left and right sides , and sometimes italics are used.

In other words, block references have their own space.

Tip

Tip:

Please use the q element to mark short quotes.

Note:

If you need to validate the page as strict XHTML, the
element must contain block-level elements

Example

Mark long quotes:

<html>
<body>

Here comes a long quotation:

<blockquote>
This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation.
</blockquote>

请注意,浏览器在 blockquote 元素前后添加了换行,并增加了外边距。

</body>
</html>
Copy after login

The above is the detailed content of Introduction to HTML

tag. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!