Added css for correct displaing (#24307)

This commit is contained in:
Gregory Gubarev
2018-12-07 13:42:22 +04:00
committed by Manish Giri
parent 631a467e74
commit 11d9115576

View File

@ -6,7 +6,7 @@ title: Size Your Images
For sizing your images, first create your class in your style tag. For sizing your images, first create your class in your style tag.
An example: An example:
``` ```css
<style> <style>
.fixed-image { .fixed-image {
width: 500px; width: 500px;
@ -15,6 +15,6 @@ An example:
``` ```
You can then add the class to your image: You can then add the class to your image:
``` ```css
<img class="fixed-image" src="http://www.example.com/picture"/> <img class="fixed-image" src="http://www.example.com/picture"/>
``` ```