doc_urls_clickable.html (1091B)
1 <!-- Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ --> 3 <html> 4 <head> 5 6 <link href="./doc_urls_clickable.css" rel="stylesheet" type="text/css"> 7 8 <style> 9 .relative2 { 10 background-image: url(doc_test_image.png); 11 } 12 </style> 13 </head> 14 <body> 15 16 <div class="relative1">Background image #1 with relative path (loaded from external css)</div> 17 18 <div class="relative2">Background image #2 with relative path (loaded from style tag)</div> 19 20 <div class="absolute">Background image with absolute path (loaded from external css)</div> 21 22 <div class="base64">Background image with base64 url (loaded from external css)</div> 23 24 <div class="inline" style="background: url(doc_test_image.png);">Background image with relative path (loaded from style attribute)</div> 25 26 <div class="inline-resolved" style="background-image: url(./doc_test_image.png)">Background image with resolved relative path (loaded from style attribute)</div> 27 28 <div class="noimage">No background image :(</div> 29 </body> 30 </html>