私はそれらの2の違いを理解したいが最大幅は100ピクセル、幅は100ピクセル、最大幅は幅よりも短いのはなぜですか?
最大幅ありがとう:100pxに
幅:必要に応じて100pxに
body{
max-width: 1080px;
width: 1080px;
background-color: floralwhite;
margin:0px;
padding: 0px;
}
p{
width:100px; /* and max-width of 100px; */
padding: 20px;
margin:0px;
float:left;
}
https://www.w3schools.com/cssref/pr_dim_max-width.asp –