forked from hummypkg/webif
Avoid negative CSS widths
This commit is contained in:
parent
73d25247f0
commit
47495e7b8d
@ -37,6 +37,10 @@ puts "<div style=\"position: relative; top: -10px\">"
|
||||
|
||||
proc div {type left right} {
|
||||
set width $($right - $left)
|
||||
if {$width < 0} {
|
||||
# negative values are invalid for CSS width
|
||||
set width 0
|
||||
}
|
||||
puts "<div class=$type style=\"left: ${left}px; width: ${width}px\">
|
||||
$type</div>"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user