border-style: none
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'> <head> <title>border-style</title> <style rel='stylesheet' type='text/css'> div { padding: 3px; border-color: crimson; border-width: 3px; margin: 5px; float: left; width: 50px; height: 50px; } div#none {border-style: none; } </style> </head> <body> <div id='none'>none</div> </body> </html>