Style links depending on url or file format
While browsing at Forrst I came across this piece of CSS. a[href^="http://"] { color: blue; } a[href^="mailto:"] { color: red; } …
While browsing at Forrst I came across this piece of CSS. a[href^="http://"] { color: blue; } a[href^="mailto:"] { color: red; } …
Today I discovered that it is possible to “increment” alphabet characters in PHP. $letter = "a"; $letter++; echo($letter); This will result in …