Última atividade 7 months ago

Revisão 57fd08eaa8f068f7ba627630158c986d8eee3e97

css.md Bruto

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;
}