Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • B bootstrap
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 263
    • Issues 263
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 114
    • Merge requests 114
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Bootstrap
  • bootstrap
  • Issues
  • #11623
Closed
Open
Issue created Nov 26, 2013 by Administrator@rootContributor

Adding 'col-' grid classes to table cells removes their cell border in Firefox and IE

Created by: dzwillia

Using the grid classes for sizing of columns in tables causes cell borders to not show in Firefox or IE. This is due to the position: relative style on these classes. Since table cells can't really have a position: relative, seems like an easy fix would just be to add the following CSS:

/* fix missing table cell borders when using 'col-' classes for column sizing */
table td[class*="col-"], table th[class*="col-"] {
  position: static;
}

Problem: http://jsfiddle.net/7GH6e/ Fixed: http://jsfiddle.net/7GH6e/1/

Let me know if you'd like me to submit a pull request to fix this.

Assignee
Assign to
Time tracking