Utoljára aktív 7 months ago

css.md Eredeti

header: fixed

.fixed-header {
  position: fixed;
  top: 20px;
}

header: sticky

.sticky-header {
  position: sticky;
  top: 20px;
}

table-layout: fixed

table {
  width: 100%;
  table-layout: fixed;
}

table-layout: auto/scrollable

table {
  width: 100%;
  table-layout: auto;
}