亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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>這是我們的第一個(gè)頁面</title> </head> <body> <h1>歡迎加入php.cn</h1> <h2>希望你能夠在這里學(xué)的開心</h2> </body> </html>
submitReset Code