2018-10-12 15:37:13 -04:00
|
|
|
---
|
|
|
|
title: Size Your Images
|
|
|
|
---
|
|
|
|
|
|
|
|
## Size Your Images
|
|
|
|
For sizing your images, first create your class in your style tag.
|
|
|
|
|
|
|
|
An example:
|
2018-12-07 13:42:22 +04:00
|
|
|
```css
|
2018-10-12 15:37:13 -04:00
|
|
|
<style>
|
|
|
|
.fixed-image {
|
|
|
|
width: 500px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
You can then add the class to your image:
|
2018-12-07 13:42:22 +04:00
|
|
|
```css
|
2018-10-12 15:37:13 -04:00
|
|
|
<img class="fixed-image" src="http://www.example.com/picture"/>
|
|
|
|
```
|