-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding 'col-' grid classes to table cells removes their cell border in Firefox and IE #11623
Comments
We're trying to avoid using CSS wildcard/substring selectors like those. It'd be better to modify the grid system mixins instead. |
What versions of Firefox and IE? Which OSes? |
IE 10.0.11 and FF 25.0.1 on Windows 7. |
@cvrebert Yeah, I totally agree -- I was a big fan of this change with icons from BS 2.x => BS 3.x. I'm just using the same CSS wildcards that already exist in BS 3.0.2 (tables.less, around line 131). Since they're already there, it seemed to make sense to specify the same wildcard to do the override and fix the problem). |
This also affects IE9, but strangely enough not IE8 in my quick test. |
@mdo: Any chance we can also add this fix to |
…thin tables to unfuck borders in IE9/10 and Firefox
…thin tables to unfuck borders in IE9/10 and Firefox
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 aposition: relative
, seems like an easy fix would just be to add the following CSS: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.
The text was updated successfully, but these errors were encountered: