Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS Border Width</title> <style> p.one{border-style:solid;border-width:5px} p.two{border-style:solid;border-width:medium} p.three{border-style:solid;border-width:1px} </style> </head> <body> <p class="one">This is first paragraph.</p> <p class="two">This is second paragraph.</p> <p class="three">This is third paragraph.</p> </body> </html>