This content originally appeared on Manuel Matuzović - Web development blog and was authored by Manuel Matuzović
On day 56 you've learned that you have to define a container-type when working with size containers and on day 59 you've learned that you can name containers using the container-name property.
The container shorthand allows you to define both properties in a single property, [name] / [type].
section {  
  container: wrapper / inline-size;
  /*
    Same as:
    container-name: wrapper;
    container-type: inline-size;
  */
}If you only define a single value (the name), the type is normal by default.
section {  
  container: wrapper;
  /*
    Same as:
    container-name: wrapper;
    container-type: normal;
  */
}
This content originally appeared on Manuel Matuzović - Web development blog and was authored by Manuel Matuzović
 
	
			Manuel Matuzović | Sciencx (2022-12-20T09:38:54+00:00) Day 62: the container shorthand. Retrieved from https://www.scien.cx/2022/12/20/day-62-the-container-shorthand/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.
