how to get rid of border css code example
Example 1: remove border css
border: none;
Example 2: how to get rid how white border on html page
<html>
<head>
<style type="text/css">
body { margin:0; }
</style>
</head>
<body>
Hello World!!!
</body>
</html>