Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有表格单元格,我将各种图像设置为边界,单元格周围没有边距。有没有办法在图像内放置一个彩色边框,将边框推入单元格而不是边缘?
如果您可以使用 CSS3,请查看outline属性。此示例在表格单元格内制作 2px 的蓝色边框。
outline
CSS:
td.bordred { outline: solid 2px #377bb5; outline-offset: -2px; }
你试过玩border-style: inset;吗?
border-style: inset;