I have this data grid
<ASP:DataGrid id="results" runat="server"
AutoGenerateColumns="False"
AllowPaging="True"
AllowCustomPaging="False"
AllowSorting="True"
PageSize="10"
PagerStyle-Mode="NumericPages"
PagerStyle-HorizontalAlign="Right"
PagerStyle-NextPageText="Next"
PagerStyle-PrevPageText="Prev"
OnPageIndexChanged="results_Page"
GridLines="None"
OnSortCommand="results_Sort" CssClass="Normal">
<PagerStyle Mode="NumericPages" NextPageText="Next" PrevPageText="Prev" HorizontalAlign="Right" />
<AlternatingItemStyle BackColor="#EEEEEE" />
<Columns>
<asp:BoundColumn DataField="Branch" HeaderText="Branch"
SortExpression="Branch asc"><ItemStyle Height = "3em" CssClass="padRight" /></asp:BoundColumn>
<asp:BoundColumn DataField="Title" SortExpression="Title asc" HeaderText="Title"><ItemStyle CssClass="padRight" /></asp:BoundColumn>
<asp:BoundColumn DataField="Category" HeaderText="Category"
SortExpression="Category asc"><ItemStyle Width = "12em" CssClass="padRight"/></asp:BoundColumn>
<asp:BoundColumn DataField="Location" HeaderText="Location"
SortExpression="Location asc"><ItemStyle CssClass="padRight" /></asp:BoundColumn>
<asp:BoundColumn DataField="Salary" HeaderText="Salary"
SortExpression="Salary asc"><ItemStyle CssClass="padRight" /></asp:BoundColumn>
</Columns>
What I would like to do is put a equivalent to padding-right: 2em; on each column. The desired effect is to put some extra space between the columns so they are easier to read. Does anyone know how to do this? Thanks,