<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How opera parses a script?]]></title><description><![CDATA[<p dir="auto">If I write HTML/CSS/JavaScript using Perl (or PHP or C++) like<br />
print"#deDef {color:#"$whitetext"}\n"; ,<br />
Opera parses this as #deDef {color:"#ffffff"} ,<br />
but won't color text using the deDef ID.<br />
Please help me understand why?</p>
]]></description><link>https://forums.opera.com/topic/6868/how-opera-parses-a-script</link><generator>RSS for Node</generator><lastBuildDate>Sat, 16 May 2026 09:36:30 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/6868.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 04 Dec 2014 21:00:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How opera parses a script? on Fri, 05 Dec 2014 15:14:26 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Angiedom.</p>
]]></description><link>https://forums.opera.com/post/60577</link><guid isPermaLink="true">https://forums.opera.com/post/60577</guid><dc:creator><![CDATA[craigtussey]]></dc:creator><pubDate>Fri, 05 Dec 2014 15:14:26 GMT</pubDate></item><item><title><![CDATA[Reply to How opera parses a script? on Fri, 05 Dec 2014 09:08:52 GMT]]></title><description><![CDATA[<pre><code>#deDef {color:"#ffffff"}
</code></pre>
<p dir="auto">is not valid CSS! Colors in hex notation should not have "" around.</p>
<p dir="auto">See<br />
<a href="http://www.w3.org/TR/CSS2/colors.html" target="_blank" rel="noopener noreferrer nofollow ugc">http://www.w3.org/TR/CSS2/colors.html</a><br />
<a href="http://www.w3.org/TR/CSS2/syndata.html#value-def-color" target="_blank" rel="noopener noreferrer nofollow ugc">http://www.w3.org/TR/CSS2/syndata.html#value-def-color</a></p>
<blockquote>
<p dir="auto">If I write HTML/CSS/JavaScript using Perl (or PHP or C++) like print"#deDef {color:#"$whitetext"}\n";</p>
</blockquote>
<p dir="auto">You should write:</p>
<pre><code>print "#deDef {color:#$whitetext}\n"; 
</code></pre>
]]></description><link>https://forums.opera.com/post/60544</link><guid isPermaLink="true">https://forums.opera.com/post/60544</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Fri, 05 Dec 2014 09:08:52 GMT</pubDate></item></channel></rss>