Hello Experts
I have following codes
<html>
<head>
<style type=text/css>
#box1{
margin:0 auto;
border:1px solid green;
width:400px;
height:70px;
color:blue;
padding:10px;
overflow:hidden;
background-image:url(images/DREAM.JPG);
background-size:100% 100%;
background-repeat:no-repeat;
}
#logo {
width:120px;
height:70px;
background-image:url("images/asia.png");
background-repeat:no-repeat;
background-size:contain;
float:left;
}
.bg{
height:100%;width:100%;
}
</style>
</head>
<body>
<div id="box1">
<div id="logo"></div>
<div style=float:left;><p style=font-weight:bolder;color:blue;font-
size:20px;margin-top:10px;>How to remove white space?</p></div>
</div>
</body>
</html>
I want to know how to remove white space aroung image.
Please help