CSS min-width

robgmerrill's avatar
Published Jul 13, 2021Updated Sep 3, 2021
Contribute to Docs

Defines the minimum width of an element.

  • Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
    • Includes 34 Courses
    • With Professional Certification
    • Beginner Friendly.
      115 hours
  • A full-stack engineer can get a project done from start to finish, back-end to front-end.
    • Includes 51 Courses
    • With Professional Certification
    • Beginner Friendly.
      150 hours

Syntax

min-width: <value>;

where <value> can be one of the following:

  • Length values: 300px
  • Percentage values: 33%
  • Keyword values: max-content, min-content, fit-content

Note: In the case that box-sizing is set to border-box, the min-width of the element includes the content, padding and border. min-width overrides the width and max-width properties.

Example 1

Set the min-width of the .box element to be 100px:

.box {
border: 2px solid black;
width: 15%;
min-width: 100px;
}

All contributors

Contribute to Docs

Learn CSS on Codecademy

  • Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
    • Includes 34 Courses
    • With Professional Certification
    • Beginner Friendly.
      115 hours
  • A full-stack engineer can get a project done from start to finish, back-end to front-end.
    • Includes 51 Courses
    • With Professional Certification
    • Beginner Friendly.
      150 hours