L
L
lavezzi12016-02-10 16:36:56
css
lavezzi1, 2016-02-10 16:36:56

How to pin svg?

Hello.
1. You need to press this illustration to the block so that they are as one. What causes this gap of several pixels? It's definitely not in the picture itself.
2. Can I insert this svg through img src or background-image and keep the same position and, most importantly, make the illustration stretch in width?
codepen.io/anon/pen/OMrMbg

Answer the question

In order to leave comments, you need to log in

2 answer(s)
K
Konstantin Velichko, 2016-02-10
@lavezzi1

It's just a space, because svg has display
inline

#svg
  display block

codepen.io/Zoxon/pen/wMRMjy

B
Brendan Castaneda, 2020-04-19
@ae_ph

If the SVG is written inline i.e. the code itself is written in HTML
The structure of the tree house: Block 1 in it Block 2, inside Block 2 is the SVG image code.
Parent (Block 1) we write
position: relative;
-----------------------------------------------------
Block (Block 2) in which SVG lies we write
position: absolute;
bottom: 0px;
-----------------------------------------------
The SVG itself CSS we write
svg {
width: 100%;
display:block;
}
-----------------------------------------------
In code SVG images in HTML next to the viewBox property We write
preserveAspectRatio='none'

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question