Here are the old opacity settings that were required for older versions of Firefox and Safari:
Views: 211
I will be posting many examples and tests as been study the different ways with dealing with round corners for both backgrounds of your text or with the headers or title bars of your pages. Also will cover buttons with the round corners with both image based with <a href="#"> tag along with using the input and button tag also.. For now this is a just a basic example as I am just getting the template layout for each section of the site and these early posts are really just a test before i start posting the detailed examples.
Views: 1407
Small example of of html tables using the Table Header tag with some CSS. The border-collapse property specifies if table cells should have their own border, or share a common border. The screen shot below shows a table where each cell has its own border.
Views: 5720
External style sheets are an important part of every Web designer's bag of tricks, but there are two ways to include them in your pages: @import and <link>. How do you decide which method is better? This FAQ discusses the differences between the two methods, why you might use one over another, and how to decide.
Before deciding which method to use to include your style sheets, you should understand what the two methods were intended to be used for.
<link> - Linking is the first method for including an external style sheet on your Web pages. It is intended to link together your Web page with your style sheet. It is added to the <head> of your HTML document like this:
<link href="/styles.css" type="text/css" />
@import - Importing allows you to import one style sheet into another. This is slightly different than the link scenario, because you can import style sheets inside a linked style sheet. But if you include an @import in the head of your HTML document, it is written:
<style type="text/css">@import url("styles.css");</style>
From a standards viewpoint, there is no difference between linking to an external style sheet or importing it.
Views: 273