Answers for "getting a white border around image element html"

CSS
0

html font white text with black border

h1 {
    color: yellow;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
<h1>Hello World</h1>
Posted by: Guest on May-27-2020
1

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> 
Posted by: Guest on February-17-2020

Code answers related to "getting a white border around image element html"

Browse Popular Code Answers by Language