Answers for "css :after content fit widht of content"

CSS
1

css width fit to content

width: fit-content;
Posted by: Guest on January-25-2021
0

width fit content

.container {
  border: 2px solid #ccc;
  padding: 10px;
  width: 20em;
}

.item {
  width: -moz-max-content;
  width: max-content;
  background-color: #8ca0ff;
  padding: 5px;
  margin-bottom: 1em;
}
Posted by: Guest on March-08-2022

Browse Popular Code Answers by Language