The generated-content tag has no wiki summary.
29
votes
4answers
2k views
How to access CSS generated content with JavaScript
I generate the numbering of my headers and figures with CSS's counter and content properties:
img.figure:after {
counter-increment: figure;
content: "Fig. " counter(section) "." counter(figure);
...
4
votes
1answer
109 views
Are CSS Generated Content acceptable in terms of SEO?
I run an online literary journal which leads to an indexing problem--our content is not "about" literature -- it is literature. As such, Google is really bad at identifying what's going on, and due to ...
1
vote
2answers
21 views
CSS: Generated content applied to blockquote only gets applied to first instance?
This CSS creates a nice effect when applied against a single blockquote within the content its attached to.
However, when there is more than one blockquote, everything works except the generated ...
1
vote
1answer
153 views
Scaling generated content in CSS
How do you scale an image added in :before or :after in CSS?
For example, I have a page which contains a book cover:
<span class="book">
<img ...
0
votes
0answers
44 views
Generated Content with :Before or :After on Table Cell (TD)
Though I had found the workaround for my problem, I still would like to clarify some things.
Here's what I wanted to achieve: a table with an image as separator between rows using generated content
...
0
votes
2answers
46 views
Removing Unwanted Characters Fom CGI Output
I have a website back-end written in C which pastes HTML header and footer templates together along with dynamically generated content in between. For some reason, an unwanted 'ΓΏ' (umlaut-ed y) ...
0
votes
1answer
145 views
CSS multi border
I don't know why this doesn't show a extra border can you see what I'm doing wrong?
.loginSubmit {
width: 100px;
height: 100px;
background: #e0e0e0;
border: 1px solid #dedede;
...