16 lines
444 B
HTML
16 lines
444 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1">
|
|
<title>border-box and max-content with aspect ratio should include borders</title>
|
|
<style>
|
|
.wrapper {
|
|
border: 1px solid red;
|
|
width: 500px;
|
|
}
|
|
.item {
|
|
width: 500px;
|
|
height: 500px;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
<div class="wrapper"><div class="item"></div></div>
|