-
-
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
card-columns card over-flow content is not visible #20161
Comments
Please post a JS Bin or other live example that demonstrates the problem. |
Hi, here is the basic bootstrap cards, JS Bin link http://jsbin.com/solozuyofe/1/edit?html,css,output basically ".absolute-content" div going below the other cards, i wonder position:absolute; why its not working in .card-columns .cards... |
@raghuam What browser and OS are you using? |
@cvrebert Im checking in windows 8 chrome and Mozilla Firefox. |
Reduced testcase: http://jsbin.com/yovihuf/1/edit?html,css,output |
Is there any fix can be done ? |
Filed Firefox bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1282363 |
Assuming you mean "Then how do I make my Unfortunately, we don't really answer "how-to" questions on this issue tracker. For further assistance with this, try asking the community on StackOverflow, IRC, or Slack. See https://github.com/twbs/bootstrap/blob/v4-dev/README.md#community for links. |
@cvrebert its bug with cards columns? position:absolute element get displayed wider than the boundaries of its card. |
The bug lies in the web browser(s), as opposed to Bootstrap. @media (min-width: 544px) {
.card-columns {
-moz-column-count: 3;
column-count: 3;
-moz-column-gap: 1.25rem;
column-gap: 1.25rem;
}
} All major browsers except Firefox currently clip your |
Added to the Wall of Browser Bugs in #20183. |
v4-alpha .card-columns .card (over-flow content is not visible) i want show more details content in position absolute element inside card, but its visible out side the card?
The text was updated successfully, but these errors were encountered: