-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
md-tab-body height doesn't collapse height properly #570
Comments
@robertmesserle is this the expected behavior? |
Also why the default min height is set to 200px for tabs and 48 px for heading? Shouldn't it be auto rather? |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Consider the following template:
The generated html puts the tab contents inside a
<div class="md-tab-body">
. Problem is that this div is always at least 199px in height. This poses problems when my content is meant to take very little height in the browser positioning logic. In the example above, notice how much blank space there is between the content and the footerMy specific user case is that within the tab pane I have a content-div whose aspect ratio needs to remain fixed. I've been using the solution from this post. It has been working well until I attempted to put the content in the new
md-tab
directive. Now, the bottom padding of the container-div no longer respects the limit set in CSSpadding-bottom
rule and I can't figure out why.The text was updated successfully, but these errors were encountered: