I would like to remove a space between two divs but I don't want to hide it moving the margins, I want to DELETE it! This is my code:
<html>
<head>
<style>
div{
display:inline;zoom:1;
margin:0px;outline:none;
}
</style>
</head>
<body>
<div style="margin-right:0;" id="test">content</div>
<div>
people
</div>
<script>
var n = 11;
document.getElementById('test').innerHTML = n;
function s(){
n=n+1;
document.getElementById('test').innerHTML = n;
}
</script>
</div>
<br><br><br>
<button onclick="s()">Add one</button>
<br><br><br>
</body>
</html>
I would like it to be "11people" instead of "11 people". Thanks!