pages共20页 1 2 3 4 5 6 7 8 9 10 下一页 最后一页



 www.blind.com

Motion Graphics, Education Blind Visual Propaganda (Santa Monica, CA) designed and animated this polished visual argument for the widespread adoption of electric...
please send your URL.

Chen 



Guidelines for Web Design in BusinessWeek article
Read the Story: The 10 Commandments of Web Design

Click to view a slide show of the Best and Worst of the Web. Cast your votes for which of the sites you love and hate in this exclusive BusinessWeek.com interactive poll.

some students use multiple rollover for their navigation. when you view your page using FireFox, you will see blue outlines around the image link. How to take the outlines off of images links?

1: give one extra attribute for <img src=".."> tag as border="0"
that will remove the border for Link images!  So the tag will look like:

<a href="mylocation.html"><img src="myImage.jpg" border="0"></a>

2: Or, you can use CSS:
img
{
border-style: none;
text-decoration: none;
}

add that to your CSS file.
What 's your URL address?