Sunday 29 July 2018

css selectors - Is it possible to select the absolute last grand child of an element using only CSS?


















Using .a .b:last-child .c:last-child won't work in this case because of the last div.b which is empty.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...