Answers for "what is container in html"

0

@container

.media-illustration {
  max-width: 200px;
  margin: auto;
}

@container (min-width: 25em) {
  .media {
    display: flex;
    align-items: center;
    gap: 1em;
  }

  .media-illustration {
    flex: 1;
  }

  .media-content {
    flex: 3;
  }
}
Posted by: Guest on January-25-2022
0

create a container in html

<div class="container">
     <!-- Your code here -->
</div>
Posted by: Guest on March-31-2022
1

what is container in html

The container tags are tags that have some content between their opening and closing tags. Some examples are the <html> , <head> , and <body> tags.

Read more about container in html at : https://sebhastian.com/html-container-tags/
Posted by: Guest on March-09-2022

Browse Popular Code Answers by Language