dynamic container size in asp.net
I am taking content from a text file to fill literal controls within my content placeholders. Sometimes there is more text than will fit in the container column. How can i make them dyn开发者_如何学编程amic, ie have scroll bars to see the unviewable content?
If you style the container with this CSS, then scrollbars will appear when content would overflow:
overflow: auto;
精彩评论