|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-06-20 10:47 UTC] mail at morkrid dot com
[2004-06-20 10:54 UTC] nlopess@php.net
[2004-06-20 11:48 UTC] goba@php.net
[2004-06-22 06:19 UTC] curt@php.net
[2004-06-22 06:38 UTC] curt@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 14:00:02 2025 UTC |
Description: ------------ in the php manual, the html seems to be incorrect, causing incorrect colors to be rendered (almost unreadable at least on my laptop) taken from the markup just beneath the next "Example 5-1. Ways of escaping from HTML", thf following code appears: <div class="phpcode"><code><span style="color: html"> this must surely be wrong. "color: html" makes no sense, and is probably not even legal. the style sheet indicates: div.phpcode span.html { color: black; } the correct html must surely be: <div class="phpcode"><code><span class="html"> this also applies for the following styles: div.phpcode span.html { color: black; } div.phpcode span.comment { color: #FF8000; } div.phpcode span.default { color: #0000BB; } div.phpcode span.keyword { color: #007700; } div.phpcode span.string { color: #DD0000; } hope this can be fixed asap, as i am reading the manual to learn php, and much of the text is now unreadable because colors and background colors are almost identical. note: in opera (which i use), incorrect colors are displayed. explorer displays just black.