<br />This tag can display a horizontal line on the screen to separate different parts of the page. <HR> has three attributes: size: The width of the horizontal line width: The length of the horizontal line, expressed as a percentage of the screen width or in pixels align: The alignment of the horizontal line, which has three types: LEFT RIGHT CENTER noshade: The line segment has no shadow attribute, and is a solid line segment. We can use several examples to illustrate the usage of this line segment: Setting line thickness <HTML> <HEAD> <TITLE>Setting line thickness</TITLE> </HEAD> <BODY> <P>This is the first line segment. No size is set. The default value SIZE=1 is used for display.<BR> <HR /> <P>This is the second line segment, SIZE=5<BR> <HR SIZE=5> <P>This is the third line segment, SIZE=10<BR> <HR SIZE=10> </BODY> </HTML> Setting the line length <HTML> <HEAD> <TITLE>Setting the length of line segments</TITLE> </HEAD> <BODY> <P>This is the first line segment. There is no WIDTH setting. The default WIDTH value of 100% is used for display.<BR> <HR SIZE=3> <P>This is the second line segment, WIDTH=50 (point method)<BR> <HR WIDTH=50 SIZE=5> <P>This is the third line segment, WIDTH=50% (percentage method)<BR> <HR WIDTH=50% SIZE=7> </BODY> </HTML> Segment Arrangement Settings <HTML> <HEAD> <TITLE>Line segment arrangement settings</TITLE> </HEAD> <BODY> <P>This is the first line segment, no ALIGN setting, (default value CENTER is used for display)<BR> <HR WIDTH=50% SIZE=5> <P>This is the second line segment, aligned to the left. BR> <HR WIDTH=60% SIZE=7 ALIGN=LEFT> <P>This is the third line segment, aligned to the right<BR> <HR WIDTH=70% SIZE=2 ALIGN=RIGHT> </BODY> </HTML> No shadow setting <HTML> <HEAD> <TITLE>Shadowless setting</TITLE> </HEAD> <BODY> <P>This is the first line segment. No NOSHADE is set. The default shadow effect is used for display.<BR> <HR WIDTH=80% SIZE=5> <P>This is the second line segment with NOSHADE set<BR> <HR WIDTH=80% SIZE=7 ALIGN=LEFT NOSHADE> </BODY> </HTML> Last horizontal line: |
<<: What are the rules for context in JavaScript functions?
>>: In-depth analysis of MySQL explain usage and results
1. Setting up nginx virtual host With virtual hos...
Recently, when upgrading the Zabbix database from...
Installing MySQL 5.7 from TAR.GZ on Mac OS X Comp...
Compatible with new CSS3 properties In CSS3, we c...
The vue mobile terminal determines the direction ...
This article records the detailed tutorial of MyS...
If you want to exit bash, there are two options: ...
How is Line-height inherited?Write a specific val...
Table of contents Problem scenario: Solution: 1. ...
Environmental preparation: Deploy lnmp on a host ...
Win10 installs mysql5.7 decompressed version, for...
Let's first understand a wave of concepts, wh...
TranslateThis URL: http://translateth.is Google T...
Without further ado, I will post the code for you...
The interviewer will sometimes ask you, tell me h...