Skip to content

Instantly share code, notes, and snippets.

@Yang03
Created June 22, 2017 06:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yang03/591b52adf87c2074a10fe98d2e5f3cfe to your computer and use it in GitHub Desktop.
Save Yang03/591b52adf87c2074a10fe98d2e5f3cfe to your computer and use it in GitHub Desktop.
css 最小50%,最大100%
{
min-width:50%;
width: calc((25em - 100%) * 1000); // 当font-size:16px 25*16=400, 100% 大于 400时,min-width起作用,当100%小于400, max-width
max-width: 100%;
}
@Yang03
Copy link
Author

Yang03 commented Jun 22, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment