ASP.NET CellSpacing Property
Complete Calendar Control Reference
Definition and Usage
The CellSpacing property is used to sets the space between calendar cells.
Note: This property does not display properly in FireFox browsers.
Syntax
<asp:Calendar CellSpacing="pixels" runat="server" />
|
| Attribute |
Description |
| pixels |
Specifies the space (in pixels) between calendar cells |
Example
The following example shows a calendar with CellSpacing 15:
<form runat="server">
<asp:Calendar id="cal1" runat="server" CellSpacing="15" />
</form>
|
Try-It-Yourself Demos
Set
CellSpacing to a Calendar control
Complete Calendar Control Reference
|