How to text into Colorful Box ?
How to text into Colorful Box ?
Here is the example code of colorful boundary line box to use your text or image into box. See exmple image below.Example code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colorful Border</title>
<style>
.colored-border {
min-width: 200px;
min-height: 100px;
border: 2px solid transparent;
border-image: linear-gradient(45deg, #ff0000, #00ff00, #0000ff) 1;
border-image-slice: 1;
}
</style>
</head>
<body>
<div class="colored-border">
"Your code text or image here"
</div>
</body>
</html>
Comments
Post a Comment
Thanks for your Comments.