in reply to Re^3: Update the GUI
in thread Update the GUI
And there is also CSS that can make an HTML element act just like a table reducing HTML. display
<style> .side { width:150px; display: table-cell; } .content { display: table-cell; width: 90%; } .wrap { display: table; width: 100%; } </style> <div class="wrap"> <div class="side">Left Side</div> <div class="content">Content</div> <div class="side">Right Side</div> </div>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Update the GUI
by Jenda (Abbot) on Aug 13, 2016 at 00:05 UTC | |
| |
|
Re^5: Update the GUI
by Anonymous Monk on Aug 12, 2016 at 22:35 UTC |