Sir I have following codes
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>
Test
</title>
<style type="text/css">
#aboutus {
border: 1px solid silver;
color: white;
font-size: 12pt;
width: 250px;
margin: 0 auto;
background: #F0FFF0;
background: url(images/dream2.jpg);
background-size: cover;
text-align: center;
padding: 20px;
overflow: auto;
}
#units {
border: 1px solid silver;
color: red;
width: 220px;
height: 80px;
background: white;
text-align: left;
padding: 5px;
float: left;
margin: 2px;
}
#units p {
font-size: 14px;
color: green;
}
#units span {
color: blue;
font-size: 14px;
font-style: italic;
}
</style>
</head>
<body>
<div id="aboutus">
<div id="units">
My Compnay Name
<p>My company Address</p>
<span>My Company Contact Numbers</span>
</div>
</div>
</body>
</html>
I want to remove gap between second and third line shown in image.