Herhangi bir eski bağlantı bağlantısı bir PDF belgesine bağlantı olabilir, ancak böyle bir bağlantıya tıklamak, başka türlü düşünmek bir kullanıcı için şaşırtıcı ve rahatsız edici olabilir. Bu CSS, bu bağlantıları görsel olarak belirtebilir.
/* Add " (PDF)" text after links that go to PDFs */ a(href$=".pdf"):after ( content: " (PDF)"; ) /* If file size specified as data attribute, use that too */ a(href$=".pdf")(data-size):after ( content: " (PDF, " attr(data-size) ")"; )
Yani…
Watch out for the PDF bomb here!
Görsel olarak şu hale gelir:
Watch out for the PDF bomb (PDF) here!
Veya…
Watch out for the PDF bomb here!
Oluyor:
Watch out for the PDF bomb (PDF, 2 MB) here!
CodePen'de Chris Coyier (@chriscoyier) tarafından hazırlanan Pen Identify PDF Bombs'a bakın.