Home > Article > Web Front-end > How to type dashed line in html
Dash lines in HTML can be created in two ways: Use the CSS border-style property to set the dashed value, which applies to any element. Use the HTML u tag to wrap the text and set the border-bottom attribute to 1px dashed for the text element.
How to create dotted lines in HTML
There are two ways to create dotted lines in HTML:
Method 1: Use the CSS border-style property
Steps:
border-style
attribute to dashed
. Example:
<code class="html"><div style="border-style: dashed;">虚线元素</div></code>
Method 2: Use HTML u
tag
Steps:
<u style="border-bottom: 1px dashed;">
tag. border-bottom
attribute to 1px dashed
. Example:
<code class="html"><u>虚线文本</u></code>
Note:
<u># The dashed line created by the ## tag can only be applied to text.
The above is the detailed content of How to type dashed line in html. For more information, please follow other related articles on the PHP Chinese website!