I want to add a border image to the cells of the table, but it does not work ... or am I doing it wrong ... The width of the border is visible, but the image is missing. My jsFiddle is here , code:
.table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
border: 0;
border-color: transparent;
border-style: solid;
border-width: 27px;
border-image: url(http://www.w3.org/TR/css3-background/border.png) 27 fill repeat;
}
Border image code is generated using border-image.com
Any ideas? Or is border-image just not supported for tables?
source
share