Images and SVGs
Images
To change the size of an image without changing its proportions, set the width
to the size you want, and set the height
to auto
:
img {
height: auto;
width: val;
}
Setting the height and width on an image also helps the browser calculate the image size while it loads the other content. This might prevent strange rendering behavior during page loads.
object-position
Works with object-fit
, which tells the browser to calculate the optimum size of the image based on the dimensions provided so that it does not distort. object-position
changes where the image is positioned inside the container to manipulate which part of the image is clipped.
SVG (Scalable Vector Graphics)
SVGs scale to any size without losing quality or increasing file size, and you can modify them with CSS or JS.
Play around with it here: SvgPathEditor.
Links
Free libraries
Misc
Use cases
- Icons
- Graphs/Charts
- Large, simple images
- Patterned backgrounds
- Applying effects to other elements via SVG filters
Anti-use cases
Inefficient for storing complex images.
Anatomy
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<rect x="0" y="0" width="100" height="100" fill="burlywood" />
<path
d="M 10 10 H 90 V 90 L 10 60"
fill="transparent"
stroke="black"
stroke-width="3"
/>
<circle cx="50" cy="50" r="20" class="svg-circle" />
<g class="svg-text-group">
<text x="20" y="25" rotate="10" id="hello-text">Hello!</text>
<use href="#hello-text" x="-10" y="65" fill="white" />
</g>
</svg>
xmlns
: XML namespace. Specifies the XML dialect that you are using so the browser can render the SVG correctly.viewBox
: Defines the bounds of the SVG—the positions of different points of the SVG elements in the following order:min-x
,min-y
,width
, andheight
Also defines the aspect ratio (ratio of width to height) and the origin (the image’s origin of motion for an animation).
class
,id
: Same funciton as in CSS or JS.<circle>
,<rect>
,<path>
,<text>
, other elements: Defined by the SVG namespace that let you build SVGs.CSS tricks SVG Elements by Category
fill
andstroke
: Properties that you can edit with CSS and JS.
Embedding SVGs
- Link with an
<img>
tag or withbackground-image: url(./path/to/.svg);
- You cannot edit these SVGs.
- Embed it in the HTML file.
- Makes HTML harder to read
- Page is less cacheable
- Slows HTML loading
You can minimize these drawbacks with React or Webpack.