1
0
Fork 0
This repository has been archived on 2022-04-17. You can view files and clone it, but cannot push or open issues/pull-requests.
thepodcasterscommunity-site/static/css/imageslayout.css

21 lines
696 B
CSS

/* This following code is thanks to http://www.ebadf.net/2016/10/19/centering-images-in-hugo */
img[src$='#center']
{
display: block;
margin: 0.7rem auto; /* you can replace the vertical '0.7rem' by
whatever floats your boat, but keep the
horizontal 'auto' for this to work */
/* whatever else styles you fancy here */
}
img[src$='#floatleft']
{
float:left;
margin: 0.7rem; /* this margin is totally up to you */
/* whatever else styles you fancy here */
}
img[src$='#floatright']
{
float:right;
margin: 0.7rem; /* this margin is totally up to you */
/* whatever else styles you fancy here */
}