I could use some help designing the CSS/HTML for this layout....
The whole thing will be a popup MOdal centered on the screen.
The top full width bar is for a Task Title THe left column is for a Task Description and the Div at the bottom left is a Fixed DIV to hold an Edit Task Description button.
The middle DIV is a fixed width of 200px and will contain many Task data fields.
The Right column will contain a Task Activity/Comment stream. Below it on Bottom right is a Fixed DIV that would hold the Comment form for creating new comments
https://i.stack.imgur.com/pH9lZ.png
This is what I am building....
The reason I am asking for help to build the structure of what it appears I already built is because...
My Task modal DIV currently has a % based width for all 3 columns...
As soon as I set my middle column to a Fixed 200px wide, it then starts to separate my wight column showing big gaps when I expand the browser and resize....
You can make it work by using calc() along with -moz-calc, -webkit-calc and -o-calc for older versions support of firfox, opera and webkit browsers because they don't support calc() property. You can check the browser support table for calc() property in here - http://caniuse.com/#feat=calc
and check the code in fiddle here - https://jsfiddle.net/zmbupv6v/1/
HTML
CSS