简体   繁体   中英

Using Kendo Grid How to remove the column Borders?

I'm using a Kendo UI Grid and by default I get column separator lines or a border line. (Vertical line down the column). How do you remove them.

Mark-up:

<div class="grid">
    <h3>Current<span class="goal-count">15</span></h3>
</div>

Here is a link to a JSFiddle project: http://jsfiddle.net/mackry/RbmAz/

Any Suggestions?

Try defining the following style:

.k-grid td {
     border-width: 0;
}

NOTE : Remember that this style is defined in KendoUI CSS so you should define this the very last.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM