|
CSS is short for Cascading Style Sheets. CSS is used
to add style to your web site design such as font or background
colors. Many webmasters believe Cascading Style Sheets are a more
efficient website tool than HTML tags because it gives you more
control over your web site design by allowing you to position
elements exactly how you intend.
Ready Made CSS ScriptsFeel free to copy and paste the following ready made CSS scripts to your website. The codes are free to use, no link back required. We've included our favorites that we use ourselves across Hypergurl. If you would like to learn how to write your own cascading stylesheets, take our comprehensive CSS tutorial. Learn how to code CSS to overlap text and images, position elements relatively or absolutely and much more. Webdesigning has never been so easy with the power of CSS. Script for changing text color on mouseoverYou can change the color of your text, be it a full paragraph or just one word by applying the code below to any valid HTML tag. The code is applied inline to your text where you want the text mouseover color applied.Run your mouse over this sentence to see an example. Awesome! <p onMouseOut="this.style.color = 'black';" onMouseOver="this.style.color = 'red';" align="justify"> No underline on linksYou'll notice across our website, when you hover over a link there is no underline displayed. Shown below is the CSS script we implimented. Add this code to your page, within the <head></head>tags or within your external CSS file.<style
type="text/css"> Background StylesHave you ever made a nice background graphic and not wanted it to tile into many pictures all over your webpage? You can change your background attributes so that it tiles in one row vertically or horizontally across your page. <style type="text/css">
<style type="text/css">
Yes, we undertand this can be done by several other methods. However it's much more fun using CSS scripts to change linked text color on mouseover. Add this code within your <head> tags or external CSS file. To keep the underline on your links, replace "none" with "underline" Change "YourColor" with the hexidecimal number of color required. |
Custom Search
|