- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
The set border that looks as though it is carved into the page
Use the border-style property with groove value to set a border as carved into the page. You can try to run the following code to implement border-style property:
Example
<html> <head> </head> <body> <p style = "border-width:4px; border-style:none;"> This is a border with none width. </p> <p style = "border-width:4px; border-style:groove;"> This is a border carved into the page. </p> </body> </html>
- Related Articles
- Set whether the table border should be collapsed into a single border or not with JavaScript?
- Set the border image as rounded, repeated and stretched with CSS
- How to set the image to be used as a border with JavaScript?
- Set image as a border for elements with CSS
- FabricJS – How to set the border opacity of a Line while moving it?
- How to get page source as it is in browser using selenium?
- Why is algae not considered under plants though it is photosynthetic? Is it microorganism?
- Is it true that leaf is known as the food factory of the plant?
- Set the style of the border with CSS
- Set the color of the border with CSS
- Set the border image width with CSS
- A body is at rest even though 2N force is acting on it. Explain the reason.
- Set the style of the bottom border using CSS
- Set the width of the left border using CSS
- Set the color of the right border using CSS

Advertisements