Hi,
I have difficulties to use the border property on a cell generated content.
I try to insert borders on cells this way:
facilities {
display: table;
content: rows(
row(
cell("baby care : ", border, 1 solid red),
cell(check-box(attribute,
"BabyCare",checked-value, "yes",unchecked-value, "no"))
cell("children playground : ", border, 1 solid red),
cell(check-box(attribute,
"ChildrenPlayground",checked-value, "yes",unchecked-value, "no")),
)
and so on...
);
}
I have no red border on first and third cells.
What did I miss ?
Thanks,
Lionel