SyntaxStudy
Sign Up
CSS Width, Height & Overflow
CSS Beginner 1 min read

Width, Height & Overflow

Width, Height & Overflow

Width & Height

  • width / height — Set explicit size
  • min-width / max-width — Constrain responsive size
  • min-height / max-height — Constrain vertical size

Overflow

When content exceeds its container, overflow controls what happens:

ValueBehaviour
visibleDefault — content spills out
hiddenClips the overflowing content
scrollAlways shows scrollbars
autoScrollbar only when needed (best)
Example
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.card {
  min-height: 200px;
  max-height: 400px;
  overflow: auto;       /* scrollable when content overflows */
}

.truncate {
  width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;  /* shows "..." when text overflows */
}