How To Change The Color Of An HR Element Using CSS

TutorialRepublic HOME HTML5 CSS3 JAVASCRIPT JQUERY BOOTSTRAP5 v4.6 PHP7 SQL REFERENCES EXAMPLES FAQ SNIPPETS Online HTML Editor WEB TUTORIALS HTML Tutorial CSS Tutorial JavaScript Tutorial jQuery Tutorial Bootstrap Tutorial PHP Tutorial SQL Tutorial PRACTICE EXAMPLES HTML Examples CSS Examples JavaScript Examples jQuery Examples Bootstrap Examples PHP Examples HTML REFERENCES HTML Tags/Elements HTML Global Attributes HTML Event Attributes HTML Color Picker HTML Language Codes HTML Character Entities HTTP Status Codes CSS REFERENCES CSS At-rules CSS Properties CSS Animatable Properties CSS Color Values CSS Color Names CSS Web Safe Fonts CSS Aural Properties PHP REFERENCES PHP Array Functions PHP String Functions PHP File System Functions PHP Date/Time Functions PHP Calendar Functions PHP MySQLi Functions PHP Filters PHP Error Levels Advertisements How to Change the Color of an <hr> Element using CSS

Topic: HTML / CSSPrev|Next

Answer: Use the CSS background-color Property

You can simply use the CSS background-color property in combination with the height and border to the change the default color an <hr> element.

In the following example we've changed the color of hr tag to light grey. You can also increase the thickness of the line by simply increasing the value of the height property.

Example

Try this code » <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Change the Color of hr Tag using CSS</title> <style> hr{ height: 1px; background-color: #ccc; border: none; } </style> </head> <body> <p>This is a paragraph</p> <hr> <p>This is another paragraph</p> </body> </html>

Related FAQ

Here are some more FAQ related to this topic:

  • How to create triangle or caret icons using CSS
  • How to add border to an element on mouse hover without affecting the layout in CSS
  • How to remove outline around text input boxes in chrome using CSS
Previous Page Next Page Advertisements Bootstrap UI Design Templates Property Marvels - A Leading Real Estate Portal for Premium Properties Advertisements

Is this website helpful to you? Please give us a like, or share your feedback to help us improve. Connect with us on Facebook and Twitter for the latest updates.

About Us

Our Story Terms of Use Privacy Policy

Contact

Contact Us Report Error Advertise

Interactive Tools

Bootstrap Icon Search Utility HTML Formatter Title & Meta Length Calculator HTML Color Picker Bootstrap Button Generator SQL Playground Font Awesome Icon Finder HTML Editor

TutorialRepublic

BMC Copyright © 2025 Tutorial Republic. All Rights Reserved. Share This:

Từ khóa » Hr Properties Tag