We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
Are there ways (classes) to make images to stretch over the full width of the screen?
The text was updated successfully, but these errors were encountered:
This code would do the job. Unfortunately I'm not too familiar with all the front-end workflows, e.g. I'm posting the raw code here.
$(document).ready(function(){ $('.full').each(function(){ var height = $(this).height(); if ($(this).parent().prop('tagName') == 'P') { $(this).parent().next().css('margin-top', height + 100 + 'px'); } else { $(this).next().css('margin-top', height + 100 + 'px'); } }) })
article img.full, article iframe.full { position: absolute; left: 0; width: 100%; }
Sorry, something went wrong.
No branches or pull requests
Hi
Are there ways (classes) to make images to stretch over the full width of the screen?
The text was updated successfully, but these errors were encountered: