Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/images/image-fallback-respect-max-width.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Image fallback respect max-width</title>
<link rel="author" href="mailto:zhoupeng.1996@bytedance.com">
<link rel="match" href="image-fallback-respect-max-width-ref.html">
<style>
div {
max-width: 200px;
}
img {
max-width: 100%;
height: auto;
}
</style>
<body>
<div>
<img src="" width="10000" height="100">
<img src="" width="10000" height="100"
alt="Lorem ipsum dolor sit amet, consectetur adipisicing elit.">
<img src="" width="1000" height="100">
</div>
</body>