Fix CSS for tagscountstop display

#juncotodo
#css

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



A     A     A     A     A

© 2013-2017 JotHut - Online notebook

current date: Apr 18, 2024 - 9:40 a.m. EDT