You need to add a background image for text. The text is enclosed in blocks. It turns out like this:

( 1блок текста) блок <div><p>text</p></div>, (2 блок текста) <div><p>text</p></div>, (3 блок текста) <div><p>text</p></div>. 

You need to add the same substrate for all blocks with text, with padding specified in the jquery properties. How?

    1 answer 1

     <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script> jQuery(document).ready( function() { jQuery("div").css("background-image","url('https://www.gravatar.com/avatar/a8f23929c678fe61e9837f7c29f0b9e8?s=48&d=identicon')"); jQuery("div").css("padding","10px"); }); </script> </head> <body> <div><p>text</p></div> <div><p>text</p></div> <div><p>text</p></div> </body>