blob: 277a3274a917fb522f52e7a5df61c9139413d234 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<style>
.parent div {
background: #aaa;
width: 100%;
height: 100px;
}
</style>
There should be two grey ~squares with no red showing.
<div class="parent" style="width:100.2px">
<div></div>
</div>
<div class="parent" style="width:100.8px">
<div></div>
</div>
|