Fix CSS for tagscountstop display
when resizing, the boxes should center within the page.
sample code to test:
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<style>
# column_container {
width: 50%;
margin: 0 auto;
}
# wrapper {
margin: 10%;
width: 100%;
}
# leftcolumn {
float: left;
background: # F2F2E6;
margin: 10px 0px 10px 0px;
padding: 10px;
border: 1px solid # 000;
}
# rightcolumn {
float: left;
color: # 333;
border: 1px solid # 000;
background: # F2F2E6;
margin: 10px 0px 10px 0px;
padding: 10px;
display: inline;
position: relative;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="column_container">
<div id="leftcolumn">COL 1 DATA</div>
<div id="rightcolumn">COL 2 DATA</div>
</div>
</div>
</body>
</html>
From JR's : articles
113 words - 840 chars
created on
- #
source
- versions