Columns Snap Back to Specified Size
For a while now I've had an issue where the columns in a grid will snap back to the specified size after dragging them bigger with your mouse. I specified a default size in my style sheet:
Everything looks correct and valid right? I have been doing CSS like this for years, but for whatever reason, when I remove the container specification the grid works properly:
If I leave it in, the grid columns always snap back.
I don't know if this has been previously noted, but I thought I'd report my findings for others. Hope it helps out.
div.container #grid{
height:340px;
width:200px;
}
div.container #grid.aw-column-0{
width:170px;
}
div.container #grid.aw-column-1{
text-align:right;
width:55px;
}
Everything looks correct and valid right? I have been doing CSS like this for years, but for whatever reason, when I remove the container specification the grid works properly:
#grid{
height:340px;
width:200px;
}
#grid.aw-column-0{
width:170px;
}
#grid.aw-column-1{
text-align:right;
width:55px;
}
If I leave it in, the grid columns always snap back.
I don't know if this has been previously noted, but I thought I'd report my findings for others. Hope it helps out.
AT
May 12,