Horizontal scrollbar when nesting a listview in a dataview

0
I am nesting a listview in a dataview but with a ugly horizontal scrollbar. How can I lose this scrollbar using Css?
asked
1 answers
1

Have you tried making sure that the width of your listview is not set to 100%? If it is set to 100%, then the width of the listview fills the width of its containing element. The border of the listview adds additional pixels to the width which is causing the horizontal scrollbar to appear. I also noticed this when I was working with nested elements. Hope that helps.

answered