Home  >  Article  >  Web Front-end  >  How to set the style of hr in css? css


tag multiple styles (graphics and text)

How to set the style of hr in css? css
tag multiple styles (graphics and text)

青灯夜游
青灯夜游Original
2018-09-21 17:20:0646864browse

When beautifying an html web page, the hr tag must be used to modify the page. However, the default hr tag style does not play a good role in modifying the page. Experienced front-end workers will use it. Use css styles to perform some beautifying operations on the hr tag. So how to style the hr tag in css? This chapter will introduce you to several styles of setting hr tags in css. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

1. What does hr mean?

Simply put, hr is a horizontal dividing line (horizontal rule) on the HTML page, which can visually separate the document into various parts. Needs to be created in the HTML page via the


tag.

Then let’s take a look at the default hr tag style:

How to set the style of hr in css? css <hr> tag multiple styles (graphics and text)

is just a black line, which is not beautiful at all, let alone using


Now that the page is beautiful, you need to use css to set the style of hr.

2. Set hr style with css

How do we set hr style with css? In fact, it is very simple. You can set the style of hr through css border property and css background-image property:

1.css sets the thickness of hr (bold) With color




How to set the style of hr in css? css <hr> tag multiple styles (graphics and text)

2.css sets the dashed line style of hr (color is blue)


How to set the style of hr in css? css <hr> tag multiple styles (graphics and text)

3.css sets the double-line style of hr


tag multiple styles (graphics and text)" >%20tag%20multiple%20styles%20(graphics%20and%20text)" title="153751752861802How to set the style of hr in css? css


tag multiple styles (graphics and text)" alt="How to set the style of hr in css? css
tag multiple styles (graphics and text)">

4.css sets the 3D three-dimensional style of hr



tag multiple styles (graphics and text)" >%20tag%20multiple%20styles%20(graphics%20and%20text)" title="153751776773438How to set the style of hr in css? css


tag multiple styles (graphics and text)" alt="How to set the style of hr in css? css
tag multiple styles (graphics and text)">

5.css Set the gradient style of hr

html code:




css code:

hr.style-one {/*透明渐变水平线*/
    width:80%;
    margin:0 auto;
    border: 0;
    height: 4px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
hr.style-two{/*渐变*/
    width:80%;
    margin:0 auto;
    border: 0;
    height: 4px;
    background: #333;
    background-image: linear-gradient(to right, red, #333, rgb(9, 206, 91));
}

How to set the style of hr in css? css <hr> tag multiple styles (graphics and text)

The above are just examples Following a few simple examples, the style of the hr tag can also be achieved through CSS. Everyone can give it a try!

The above is the detailed content of How to set the style of hr in css? css


tag multiple styles (graphics and text). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn