HTML Several Special Dividing Line Effects

HTML Several Special Dividing Line Effects

1. Basic lines


2. Special effects (the effects are not isolated and can be combined with each other)
1. Gradual transparency at both ends:
<HR style="FILTER: alpha(opacity=100,finishopacity=0,style=3)" width="80%" color=#987cb9 SIZE=3>


2. Spindle shape:
<HR style="FILTER: alpha(opacity=100,finishopacity=0,style=2)" width="80%" color=#987cb9 SIZE=10>


3. Gradual transparency on the right:
<HR style="FILTER: alpha(opacity=100,finishopacity=0,style=1)" width="80%" color=#987cb9 SIZE=3>


4. Gradual transparency on the left:
<HR style="FILTER: alpha(opacity=0,finishopacity=100,style=1)" width="80%" color=#987cb9 SIZE=3>


5. Dashed line:
<HR style="border:1 dashed #987cb9" width="80%" color=#987cb9 SIZE=1>


6. Double line:
<HR style="border:3 double #987cb9" width="80%" color=#987cb9 SIZE=3>


7. Stereoscopic effect:
<HR style="FILTER: progid:DXImageTransform.Microsoft.Shadow(color:#987cb9,direction:145,strength:15)" width="80%" color=#987cb9 SIZE=1>


8. Steel needle effect:
<HR style="FILTER: progid:DXImageTransform.Microsoft.Glow(color=#987cb9,strength=10)" width="80%" color=#987cb9 SIZE=1>


9. Vertical dividing line
<table border="1px" cellpadding="0" cellspacing="0" style="height:265px;border-left-style:solid; border-bottom-style:none;border-right-style:none;border-top-style:none">


<HR align=center width=300 color=#987cb9 SIZE=1>
align line position (optional left, right, center); width line length; color color; size thickness

<<:  JavaScript Regular Expressions Explained

>>:  How to install Oracle_11g using Docker

Recommend

dl, dt, dd list label examples

The dd and dt tags are used for lists. We usually...

IE8 Developer Tools Menu Explanation

<br />This article has briefly explained the...

HTML drag and drop function implementation code

Based on Vue The core idea of ​​this function is ...

MySQL 5.7.24 installation and configuration graphic tutorial

This article shares the installation and configur...

Example code for implementing auto-increment sequence in mysql

1. Create a sequence table CREATE TABLE `sequence...

How to fix abnormal startup of mysql5.7.21

A colleague reported that a MySQL instance could ...

Several ways to introduce pictures in react projects

The img tag introduces the image Because react ac...

Nodejs-cluster module knowledge points summary and example usage

The interviewer will sometimes ask you, tell me h...

VMware Workstation installation Linux system

From getting started to becoming a novice, the Li...

MySQL 5.7 JSON type usage details

JSON is a lightweight data exchange format that u...

Tutorial on using the frameset tag in HTML

Frameset pages are somewhat different from ordina...

Solution to 1067 when Mysql starts in Windows

I just started working a few days ago and install...

MYSQL METADATA LOCK (MDL LOCK) MDL lock problem analysis

1. Introduction MDL lock in MYSQL has always been...