
Originally Posted by
ralph.m
Can you post a link to an example? Or post a working example here.
Hi ralph, i do apologize i forgot to put my source code...
here it is, when you ctrl+mouse wheel as you can observe that the checkbox and the textbox well overlap and it will not align properly...Thank you in advance...
Code:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<style type="text/css">
#firstdiv{
float: left;
}
#firstdiv input{
margin-left: 5px;
}
#seconddiv{
float: left;
}
.wrapperclass{
width: 80%;
}
</style>
</head>
<body>
<div class="wrapperclass">
<div id="firstdiv">
<label>Please input</label>
<input type="text">
</div>
<div id="seconddiv">
<input type="checkbox">
<input type="text"/>
</div>
</div>
</body>
</html>
Bookmarks