Cellspacing = 0 ...how

Hi all,

fast question: how is possible to set cellspacing=0 to a cGridView table?

sry about my newbie request and

…thanks in advance!

Copy the CGridView styles.css included with yii to your apps css folder, adjust as needed and set it as cssFile property of the CGridView.

Thank you Dart,

You help me to found a CSS solution about cellspacing = 0.

I insert this rule into the css:


border-collapse: collapse;

border-spacing: 0;

and it works!

thanks.