HTML Compiler Online
Javascript Online Compiler
index.html
Change Theme
Compress code
Format code
Download Code
Clear Code
Copy Code!
RunĀ
ctrl+s or click
Output
<!DOCTYPE html> <html> <head> <title>CSS - border width shorthand</title> <style> .width { border-style:solid; border-width: 3px 1px 0px 5px; } </style> </head> <body> <h2>border-width is shorthand for border-top-width, border-right-width, border-bottom-width, and border-left-width.</h2> <p class="width">This paragraph is inside box which has different value for each border side.</p> </body> </html>
RunĀ
x
x