You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
I have added the library and its working great but I need to connect all of my images horizontally. I can not find where this margin comes from but there is about 10 px margin between each pair of images.
Can some one help me please?
The text was updated successfully, but these errors were encountered:
There's a hack for that in HTML. I hope it will help you in your case too.
When you place images like that: <img src="bunny.jpg"><img src="sheep.jpg"> there is a space between them like you said about 10 pixels.
To avoid that you can place images like this: <img src="bunny.jpg"><!----><img src="sheep.jpg">
or even like this: <img src="bunny.jpg"><!-- killing the margin --><img src="sheep.jpg">
to keep code beautiful. Just remember to put any commentary between your pictures.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have added the library and its working great but I need to connect all of my images horizontally. I can not find where this margin comes from but there is about 10 px margin between each pair of images.
Can some one help me please?
The text was updated successfully, but these errors were encountered: