html中表格怎么用很小的图片铺满背景
html中表格怎么用很小的图片铺满背景
日期:2015-12-06 18:54:24 人气:1
就用background呗,指定为图片:
table { background: url("img/texture.jpg"); } td { border: 1px solid green; width: 3em; text-align: center; } 1