Languages
[Edit]
EN

CSS - set element min width

0 points
Created by:
Kenya-Spears
860

In this article, we would like to show you how to set element min width using CSS.

Quick solution:

.element {
    min-width: 100px;
}

 

Practical example

In this example, we use min-width CSS property to set element minimum width to 200px. If the width property percentage value will be less than 200px, the min-width property will prevent the element from shrinking horizontally.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <style>

    div.element {
        width: 1%;
        min-width: 200px;
        background: orange;
    }

  </style>
</head>
<body>
  <div class="element">Example text inside ...</div>
</body>
</html>

 

See also

  1. CSS - set element max width

References

  1. min-width - CSS: Cascading Style Sheets | MDN

Alternative titles

  1. CSS - set element minimum width
  2. CSS - set element minimal width
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join