the scenario is the next..
i have a style sheet like:
.class{display:block;position:absolute;}
which i assign to every control inside a div. the problem is that after i drag and drop controls into the div, visual studio modify my css class and ends up like:
.class{display:block;position:absolute;top:100px;left:100px}
which results in every control having the same position
is there a way that visual studio set the position individually and not touching my class?
found a workaround. it consists in specifying any position to each control in the source view before asigning it the css class,after this i can move any control independently from the design view.