Responsive Design

I’ve looked into the possibility of needing an app for Speakers Corner and although the web-browser version would be limited on how it could communicate with the device, there is little need for more than location. Although notifications for replies would work well, I think email notifications would work well enough. There could be a possibility for an app in the future though.

So I’ve looked at the responsive design for HTML, resizing the window will be quite simple, with this simple code. Beyond that, I’ll need to have the sections of the site to re-order themselves depending on room.

HTML:

<html>
<body>
    <div id="wrapper"></div>
</body>
</html>

CSS:

html, body, {
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *