Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

min css

.content {
  /*Choose the smallest value between these two values at any time*/
  width:min(500px,70%);
  /*equivalent to */
  width:70%;
  max-width:500px;
}
Source by youtu.be #
 
PREVIOUS NEXT
Tagged: #min #css
ADD COMMENT
Topic
Name
7+3 =