I having a datalist which contains very small item, I did not set the height of the datalist but the problem is there is like a minimum height for datalist bacause even i jut put a dot (.) in the itemTemplate the height still the same.
below is my codes in aspx:
<asp:DataList ID="dl" runat="server" CellPadding="1" CellSpacing="0" RepeatDirection="Horizontal"
<ItemTemplate> .
.
</asp:DataList>
I purposely put border so the you guys can see the actual output, below is the output:
What can i do so that i will get the datalist with no unnecessary space in between?
microlau Blog: http://community.sgdotnet.org/blogs/microlau
The melody of logic will always play out the truth. ~ Narumi Ayumu, Spiral
You are right, i solved the problem by set the font size to smaller size.
Thanks.