CODE FOR BORDERS

           HTML and CSS codes for Borders

If you want a border for your HTML and CSS output,
Maybe some of the codes Below will help you🤗

HTML code

<p class="solid">Solid Border</p>
<p class="dashed">Dashed Border</p>
<p class="dotted">DottedDotted </p>
<p class="double">Double Border</p>
<p class="groove">GrooveGroove </p>
<p class="ridge">Ridge Border</p>
<p class="inset">Inset Border</p>
<p class="outset">Outset Border</p>
•then save file .html

.CSS codes
(Open an another notepad)

p.solid{border-style:solid;}
p.dashed{border-style:dashed;}
p.dotted{border-style:dotted;}
p.double{border-style:double;}
p.groove{border-style:groove;}
p.ridge{border-style:ridge;}
p.inset{border-style:inset;}
p.outset{border-style:outset;}
•then save file .css



The Tables on the photo will be the result of the Codes given above😉


If you find my blog helpful, please leave a comment below 😊
Thankyou!

Comments

Post a Comment