Prop Webcontrol Radiobuttonlist Cellspacing
## ASP.NET RadioButtonList CellSpacing Property
The `CellSpacing` property is a member of the `RadioButtonList` control in ASP.NET Web Forms. It is used to get or set the spacing (in pixels) between individual cells in the rendered table layout of the radio button list.
---
### Definition and Usage
The `CellSpacing` property defines the amount of space between the cells of the table that contains the radio buttons.
> **Important Note:** This property is only effective when the `RepeatLayout` property of the `RadioButtonList` is set to `RepeatLayout.Table` (which is the default layout behavior). If `RepeatLayout` is set to `Flow`, `UnorderedList`, or `OrderedList`, this property will be ignored because no HTML `` element is generated.
---
### Syntax
```xml
YouTip