css - Removing margin- html -
i trying remove margin- orange space, , move red dot up. please help? have tried using css tags- margin, padding. but, not work.
<div style="padding:0px; margin-right:0px; width: 280; font-family:arial, helvetica, sans-serif ;font-size: 40px; font-weight: bold;color:#33a8ff"> current status </div> <div id= "redc" style="width: 10px; height: 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; background: red; margin-left: 400px "> </div>
you use display:inline-block
both divs.
div {display:inline-block}
Comments
Post a Comment