my previous code which worked:
border image h1{ border: 15px solid; border-width: 30px; border-image: url('bgimg.jpg'); /*border-image: linear-gradient(orange, white, green) 40/30px 10px stretch; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ /*border-image: linear-gradient(orange, white, green) 40/30px 10px repeat; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ /*border-image: linear-gradient(orange, white, green) 40/30px 10px round; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ /*border-image: linear-gradient(orange, white, green) 40/30px 10px space; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ /*border-image: linear-gradient(orange, white, green) 40/30px 10px stretch; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ }This is an example of a border image.
- my project code which didn’t work: (at last moment I used linear-gradient )
My name is Shubham Kumar
My father's name is Rameshwar Tiwari
My mother's name is Kamla Tiwari
My address is Patna, Bihar
*the same code which worked previously but when I copied and applied to new page the same code didn’t work.
border image div{ border: 15px solid; border-width: 30px; border-image: url('bgimg.jpg') 40/30px 10px stretch; /*border-image: linear-gradient(orange, white, green) 40/30px 10px stretch; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ /*border-image: linear-gradient(orange, white, green) 40/30px 10px repeat; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ /*border-image: linear-gradient(orange, white, green) 40/30px 10px round; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ /*border-image: linear-gradient(orange, white, green) 40/30px 10px space; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ /*border-image: linear-gradient(orange, white, green) 40/30px 10px stretch; /*40 belong to slice, 30px belongs to width, 10px belongs to space */ }My name is Shubham Kumar
My father's name is Rameshwar Tiwari
My mother's name is Kamla Tiwari
My address is Patna, Bihar
Why? I need guidance.