<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>Cascading Style Sheets (CSS)</title><description>Basic knowledge  of CSS for Web site Design</description><managingEditor>noreply@blogger.com (sandy)</managingEditor><pubDate>Sun, 1 Sep 2024 07:44:07 -0700</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">4</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://css-basic.blogspot.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:summary>Basic knowledge of CSS for Web site Design</itunes:summary><itunes:subtitle>Basic knowledge of CSS for Web site Design</itunes:subtitle><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><title>css border style</title><link>http://css-basic.blogspot.com/2009/05/css-border-style.html</link><author>noreply@blogger.com (sandy)</author><pubDate>Mon, 4 May 2009 23:51:00 -0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3704806551879999560.post-944083010759962374</guid><description>You can put border around text, paragraphs, images, tables with different styles according to match you page color combinations. You will get an idea of all the different looks you can create&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#cc0000;"&gt;Border style :&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style="color:#ff9900;"&gt;&amp;lt; style type="text/css"&amp;gt;&lt;br /&gt;.dotted {border-style: dotted;}&lt;br /&gt;.dashed {border-style: dashed;}&lt;br /&gt;.solid {border-style: solid;}&lt;br /&gt;.double {border-style: double;}&lt;br /&gt;.groove {border-style: groove;}&lt;br /&gt;.ridge {border-style: ridge;}&lt;br /&gt;.inset {border-style: inset;}&lt;br /&gt;.outset {border-style: outset;}&lt;br /&gt;&amp;lt; /style&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;&lt;strong&gt;Result :&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: dotted; BORDER-TOP: dotted; BORDER-LEFT: dotted; BORDER-BOTTOM: dotted"&gt;dotted style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: dashed; BORDER-TOP: dashed; BORDER-LEFT: dashed; BORDER-BOTTOM: dashed"&gt;dashed style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: solid; BORDER-TOP: solid; BORDER-LEFT: solid; BORDER-BOTTOM: solid"&gt;solid style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: double; BORDER-TOP: double; BORDER-LEFT: double; BORDER-BOTTOM: double"&gt;double style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: groove; BORDER-TOP: groove; BORDER-LEFT: groove; BORDER-BOTTOM: groove"&gt;groove style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: ridge; BORDER-TOP: ridge; BORDER-LEFT: ridge; BORDER-BOTTOM: ridge"&gt;ridge style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: inset; BORDER-TOP: inset; BORDER-LEFT: inset; BORDER-BOTTOM: inset"&gt;inset style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: outset; BORDER-TOP: outset; BORDER-LEFT: outset; BORDER-BOTTOM: outset"&gt;outset style border &lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>How to style link</title><link>http://css-basic.blogspot.com/2009/04/how-to-style-link.html</link><author>noreply@blogger.com (sandy)</author><pubDate>Mon, 27 Apr 2009 03:15:00 -0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3704806551879999560.post-905449677666270224</guid><description>&lt;span style="font-size:130%;"&gt;I will explain you how to style text link with the help of example. For this I have created one link and declare link Css properties. The default link is red and after cursor over the link text, the link will appear blue.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;link, visited, hover, and active these are four selectors.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&amp;lt; style type="text/css"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;a:link {color:# c70505; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;a:visited {color:# 0caa0c; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;a:hover {color:# 406ee2; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;a:active {color:#ccccc; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&amp;lt; /style&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;In the above code link(&lt;/span&gt;&lt;span style="color: rgb(255, 102, 102);font-size:130%;" &gt;a:link&lt;/span&gt;&lt;span style="font-size:130%;"&gt;)  defines the properties for an unvisited link. VISITED (&lt;/span&gt;&lt;span style="color: rgb(255, 102, 102);font-size:130%;" &gt;a:visited&lt;/span&gt;&lt;span style="font-size:130%;"&gt;) defines the properties for a visitied link. ACTIVE(&lt;/span&gt;&lt;span style="color: rgb(255, 102, 102);font-size:130%;" &gt;a:active&lt;/span&gt;&lt;span style="font-size:130%;"&gt;) defines the properties of a currently active link. HOVER (&lt;/span&gt;&lt;span style="color: rgb(255, 102, 102);font-size:130%;" &gt;a:hover&lt;/span&gt;&lt;span style="font-size:130%;"&gt;)defines the properties when a mouse is over a link which is blue here.&lt;br /&gt;&lt;br /&gt;You can specify a different BACKGROUND color, cursors, font …etc for link&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>CSS validation</title><link>http://css-basic.blogspot.com/2009/04/css-validation.html</link><author>noreply@blogger.com (sandy)</author><pubDate>Mon, 20 Apr 2009 22:09:00 -0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3704806551879999560.post-199097272304787071</guid><description>&lt;span style="font-size:130%;"&gt;CSS validation means examination that you are applying a correct technique in your CSS code. Validation tool helps you to detect all kind of errors that possibly you couldn’t be identified during the developing process. Validation tools (services) are freely available. You can use online services or download software use for your local work.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;you can get free validation for your style sheets from the&lt;br /&gt;&lt;a href="http://jigsaw.w3.org/css-validator/" target="_blank"&gt;http://jigsaw.w3.org/css-validator/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;Validation is mostly use for to find the error in your CSS code. Browsers are becoming more standards compliant, and it is becoming increasingly necessary and important to write valid css. If you want your site listed on search engines then make sure that you have good Css.&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Basic understanding of CSS (Cascading Style Sheet)</title><link>http://css-basic.blogspot.com/2009/04/css-basic_17.html</link><author>noreply@blogger.com (sandy)</author><pubDate>Fri, 17 Apr 2009 03:17:00 -0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-3704806551879999560.post-1599181325280705810</guid><description>&lt;div&gt;Web design is today’s one of the fastest growing career fields, so it is the perfect time to become a Web designer. As a web designer you should have knowledge of Graphics designing, HTML and Css (Cascading Style Sheets). In this blog I am sharing some basic knowledge of CSS that will help you in your every day web design and development tasks. Before learn CSS you should have knowledge of HTML.&lt;br /&gt;&lt;br /&gt;May be you already heard about CSS. CSS stands for the &lt;a href="http://css-basic.blogspot.com/"&gt;&lt;strong&gt;&lt;span style="color:#990000;"&gt;Cascading Style Sheet&lt;/span&gt;&lt;/strong&gt;.&lt;/a&gt; Css is a collection of formatting rules that control the appearance of content in a web page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;HTML is used to structure content. CSS is used for formatting structured content.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;( &lt;span style="font-size:85%;"&gt;In simple word css allow you to change style of fonts, colors, background, borders, text formatting, link etc.)&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;br /&gt;&lt;/span&gt;There are three ways you can apply CSS to an HTML document&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;Inline &lt;/li&gt;&lt;br /&gt;&lt;li&gt;Embedded &lt;/li&gt;&lt;br /&gt;&lt;li&gt;External Style Sheets&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#ff6600;"&gt;Inline Styles:&lt;/span&gt;&lt;/strong&gt; Inline styles are styles that are written directly in the tag on the HTML document. Inline styles affect only the tag they are applied to.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color:#cc0000;"&gt;&lt;strong&gt;&amp;lt; a href=" " style="color: red;" &amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#ff6600;"&gt;Embedded Styles:&lt;/span&gt;&lt;/strong&gt; Embedded styles are styles that are embedded in the head of the HTML document. Embedded styles affect only the tags on the page they are embedded in. &lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color:#cc0000;"&gt;&lt;strong&gt;&amp;lt; style type="text/css"&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;p {border-left: 1px dotted gray;}&amp;lt; /style&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;If any changes you want to make to one page, will have to be made to all. This method can be good if you need to style only one page.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#ff6600;"&gt;External Styles:&lt;/span&gt;&lt;/strong&gt; External styles are styles that are written in a separate document and then attached to various HTML documents. External style sheets can affect any page they are attached to. &lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color:#cc0000;"&gt;&lt;strong&gt;&amp;lt; link rel="stylesheet" type="text/css" href="styles.css" /&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Can control styles for multiple documents at once.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Easier Maintenance &lt;/li&gt;&lt;br /&gt;&lt;li&gt;Reduced File Size &lt;/li&gt;&lt;br /&gt;&lt;li&gt;Improved Flexibility&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://feeds2.feedburner.com/CascadingStyleSheetscss" type="application/rss+xml" rel="alternate"&gt;&lt;img style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: middle; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" alt="" src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" /&gt;&lt;/a&gt; &lt;a href="http://feeds2.feedburner.com/CascadingStyleSheetscss" type="application/rss+xml" rel="alternate"&gt;Subscribe in a reader&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item></channel></rss>