| <!DOCTYPE html> | |
| <!-- | |
| | Setting the 4 different border styles and width for 4 directions. | |
| | https://www.w3.org/TR/css3-background/#border-style | |
| | https://www.w3.org/TR/css3-background/#border-width | |
| --> | |
| <html> | |
| <head> | |
| <style> | |
| div { | |
| border-color: blue; | |
| border-top-style: solid; | |
| border-bottom-style: solid; | |
| border-top-width: 15px; | |
| 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> |