blob: db472db3e43bdbc3acfc13f5f682228838e88a55 (
plain)
1
2
3
4
5
6
7
8
|
<!DOCTYPE html>
<html><body>
There should be a blue block at the center of a black border.<br>
<div style="border: solid 5px black; display: inline-block">
<div style="float: left; margin: 50px; width: 50px; height: 50px; background-color: blue;">
</div>
</div>
</body></html>
|