国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML basic tutorial block elements and line elements

Block elements

  • Block elements usually occupy one line by themselves. Regardless of the content, they always occupy one line.

  • What are the block elements? <div>, <p>, <h1>, <h2>, <pre>, etc.

#Inline elements

  • Inline elements will not occupy a separate line.

  • The width of inline elements is mainly determined based on the content.

  • Multiple inline elements will be arranged on the same line.

  • What are the inline elements? <font>, <b>, <i>, <u>, <sub>, <sup>, etc.

##Conclusion: In the tag embedded When nested, it is usually inline elements nested within block elements.

You should pay attention to this when typesetting. Multiple inline elements will be arranged in one line. If you want to break a line, you must use a line break tag, and a block element occupies a separate line

Continuing Learning
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>這是我們的第一個頁面</title> </head> <body> <h1>歡迎加入php.cn</h1> <h2>希望你能夠在這里學的開心</h2> </body> </html>
submitReset Code