1. Home
  2. /
  3. Blog
  4. /
  5. border in css
CSS

border in css

September 27, 2022 1 min read 2,235
border in css
<!DOCTYPE html>
<html>
<head>
	<title>website</title>
</head>
<body>
<style type="text/css">
	
p{
	size: 20px;
	width: 50px;
border:3px;

border-style: solid;
border-color: red; 
border-radius: 70px;
}


</style>


<p align="center">hello world</p>

</body>
</html>
Share:
Read next

Related articles