<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Royal Deer Design &#187; CSS</title>
	<atom:link href="https://www.royaldeerdesign.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.royaldeerdesign.com</link>
	<description>Web Design Company</description>
	<lastBuildDate>Thu, 21 Aug 2025 15:08:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Superscript and Subscript at the Same Place (html)</title>
		<link>https://www.royaldeerdesign.com/2010/10/superscript-and-subscript-at-the-same-place-html/</link>
		<comments>https://www.royaldeerdesign.com/2010/10/superscript-and-subscript-at-the-same-place-html/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 00:23:50 +0000</pubDate>
		<dc:creator><![CDATA[Sheuli]]></dc:creator>
				<category><![CDATA[Internet Business Tips]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[sub]]></category>
		<category><![CDATA[Subscript]]></category>
		<category><![CDATA[sup]]></category>
		<category><![CDATA[Superscript]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://coot.arvixe.com/~royald/?p=1869</guid>
		<description><![CDATA[One can display mathematical formulas in plain HTML 4.0 on both Mac OS and MS Windows. You can read more about that here. Unfortunately, there is not any tag which can place the characters on top of each other. To achieve it we have to use few lines of CSS and HTML code. Below the]]></description>
				<content:encoded><![CDATA[<p>One can display mathematical formulas in plain HTML 4.0 on both Mac OS and MS Windows. You can read more about that here. Unfortunately, there is not any tag which can place the characters on top of each other. To achieve it we have to use few lines of CSS and HTML code.</p>
<p>Below the solution:</p>
<p><strong>CSS:</strong></p>
<p>span.subsup {<br />
position: relative;<br />
}</p>
<p>span.subsup sub {<br />
position: absolute;<br />
left: 0em;<br />
bottom: -1.4em;<br />
}</p>
<p><strong>HTML:</strong></p>
<p>CO < span class="subsup">< sup>2-< /sup>< sub>3< /sub></p>
<p>Interesting thing is that you can create a fraction simply by making Superscript underline. Just like: < sup>< u>2-< /u>< /sup>. </p>
]]></content:encoded>
			<wfw:commentRss>https://www.royaldeerdesign.com/2010/10/superscript-and-subscript-at-the-same-place-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Change Font Size</title>
		<link>https://www.royaldeerdesign.com/2010/06/javascript-change-font-size/</link>
		<comments>https://www.royaldeerdesign.com/2010/06/javascript-change-font-size/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 15:27:50 +0000</pubDate>
		<dc:creator><![CDATA[Sheuli]]></dc:creator>
				<category><![CDATA[Internet Business News]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://coot.arvixe.com/~royald/?p=2175</guid>
		<description><![CDATA[We are working on a website with a dynamic font size functionality. Do you know that this so useful functionality costs only two lines of code? If you consider the need of people to see larger fonts on your website you can use JavaScript code crated by our web developer. Change Font Size with Javascript]]></description>
				<content:encoded><![CDATA[<p>We are working on a website with a dynamic font size functionality. Do you know that this so useful functionality costs only two lines of code? If you consider the need of people to see larger fonts on your website you can use JavaScript code crated by our web developer.</p>
<p>Change Font Size with Javascript Ready to use code:</p>
<p><script type="text/javascript">
<!--

function changeFontSize(multiply)
{
if (document.body.style.fontSize == "") document.body.style.fontSize = "1.0em";
document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiply * 0.2) + "em";
}

-->
</script> </p>
<p><a href="javascript:void(0);" onclick="changeFontSize(1)">+A</a><br />
<a href="javascript:void(0);" onclick="changeFontSize(-1)">-A </a></p>
<p>You can use this code on your website, just copy the code and past it into your document. </p>
]]></content:encoded>
			<wfw:commentRss>https://www.royaldeerdesign.com/2010/06/javascript-change-font-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
