I am playing around in my first ASP.net/HTML/CSS Application.
I need draggable panels and used Ajax-Control-Toolkit, it works good and I am only using one panel so far!
Now I want to fit the panels into its parent-containers "div"-containers, you can see them in the background, with borders (LEFT,TOP,BOTTOM).I have used those CSS-Settings for the children-panels:
.dragpanel-left {
top:0px;
left:0px;
width: 50%;
height: 50%;
}
The problem is, when I use it like this, it gets overwritten by element.style{},
I tried to use !important
but the panel can't be resized nor moved then.
Any idea how to solve this problem? Is there a "use !important once" tag or something so when the site is built, the panel is placed into its parent and after that can be freely moved?