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

MySQL 5.6 root password modification tutorial

1. After installing MySQL 5.6, it cannot be enabl...

Draw a heart with CSS3

Achieve resultsRequirements/Functionality: How to...

A detailed analysis of the murder caused by a misplaced double quote in MySQL

1. Introduction Recently, I often encounter devel...

Common array operations in JavaScript

Table of contents 1. concat() 2. join() 3. push()...

You really need to understand the use of CSS variables var()

When a web project gets bigger and bigger, its CS...

MySQL 8.0.18 adds users to the database and grants permissions

1. It is preferred to use the root user to log in...

Solution to the problem of var in for loop

Preface var is a way to declare variables in ES5....

Example of implementing GitHub's third-party authorization method in Vue

Table of contents Creating OAuth Apps Get the cod...

JS uses clip-path to implement dynamic area clipping function

background Today, I was browsing CodePen and saw ...

MySQL functional index optimization solution

When using MySQL, many developers often perform f...

GDB debugging MySQL actual combat source code compilation and installation

Download source code git clone https://github.com...

How to customize at and cron scheduled tasks in Linux

There are two types of scheduled tasks in Linux s...

Linux uses stty to display and modify terminal line settings

Sttty is a common command for changing and printi...