Skip to content

colspan-rowspan-range

Validate colspan (1-1000) and rowspan (0-65534) ranges.

Severity

error

❌ Incorrect

html
<table><tr><td colspan="1001">x</td></tr></table>

✅ Correct

html
<table><tr><td colspan="5">x</td></tr></table>

Reference

Configuration

json
{
  "rules": {
    "colspan-rowspan-range": "error"
  }
}

Released under the MIT License.