$result

set filesList [lsort -decreasing [glob -nocomplain "ABC/*.sql"]]
if {[llength $filesList]>0} {
set reqFile [lindex $filesList 0]
}

这个背景模式我在firefox浏览器中根本不使用vissible。这是个常见的问题吗?对此有什么解决方案吗?
答案 0 :(得分:2)
您在白色背景上放置白线。
解决方案?更改背景颜色或线条颜色:
body {
min-height: 500px;
background-image:linear-gradient(90deg, rgba(255,255,255,.25) 1px, rgba(0,0,0,0) 1px), linear-gradient(0deg, rgba(255,255,255,.25) 1px, rgba(0,0,0,0) 1px);
background-color: black;
background-position:0px 1px;
background-repeat:repeat;
background-size:20px 20px;
}
可以自由地称我为brainiac。