How to add image-border to your text.
N Cee Dee

N Cee Dee @nceedee

About: web developer, student .... specialize in Html , Css , and JavaScript , tailwind css , react js ,nextjs... Blogger, and a reader.

Location:
Awka,Nigeria.
Joined:
May 22, 2022

How to add image-border to your text.

Publish Date: May 22 '22
4 0

Below is an Hmtl and css code which you can follow up in adding border to your text. simple and easy.

Image description

Here is the result

Image description

let me leave the css coding here for you.
*{
box-sizing: border-box;
}

body{
margin: 0;
padding: 0;
background-color: aquamarine;
}

.container{
border: 100px solid black;
width: auto;
height: auto;
padding: 15px;
margin: 8px;
border-image: url(./image/border1.jpg) 30% round;
background-repeat: no-repeat;
background-size: contain;
background-color: red;
color: white;
margin-top: 13em;
}

Comments 0 total

    Add comment