| <!DOCTYPE html> | |
| <!-- | |
| | Setting the 4 different border widths for 4 directions. border-top-width | |
| | would be default width. | |
| | https://www.w3.org/TR/css3-background/#border-width | |
| --> | |
| <html> | |
| <head> | |
| <style> | |
| div { | |
| border: solid; | |
| border-color: blue; | |
| border-left-width: 20px; | |
| border-bottom-width: .8em; | |
| border-right-width: 10px; | |
| background: #ff6363; | |
| height: 100px; | |
| width: 100px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div></div> | |
| </body> | |
| </html> |