-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 916 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (23 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!doctype html>
<meta charset="utf-8">
<title>Image [utility] - SUIT CSS</title>
<meta name="viewport" content="initial-scale=1, width=device-width">
<link rel="stylesheet" href="../build/test.css">
<style>
.img-container {
max-width: 400px;
background-color: red;
}
</style>
<div class="Test">
<h1 class="Test-title">SUIT CSS: <a href="https://github.com/simonsmith/suit-utils-image">image</a> tests</h1>
<h2 class="Test-describe">.u-imgResponsive</h2>
<h3 class="Test-it">it should allow an image to respond to parent width</h3>
<div class="Test-run img-container">
<img src="https://unsplash.it/600/480?image=12" class="u-imgResponsive" alt="">
</div>
<h3 class="Test-it">it should allow override the display with another utility</h3>
<div class="Test-run img-container">
<img src="https://unsplash.it/600/480?image=12" class="u-imgResponsive u-inline" alt="">
</div>
</div>