Grabbing Hex Codes for Colors
Defining colors in CSS is all about Hex Codes. You know, those alphanumeric six-digit things like #990000. You might have a handful of them memorized. Like that one I just mentioned is a nice dark red. #cccccc is a …
UGURUS, powered by DigitalOcean, offers elite training and mentorship for Agency Owners. Join the Agency Accelerator for free to get more leads, land high-value deals, and build recurring revenue!
Defining colors in CSS is all about Hex Codes. You know, those alphanumeric six-digit things like #990000. You might have a handful of them memorized. Like that one I just mentioned is a nice dark red. #cccccc is a …
For many people, their introduction to web design and the wonderful world of CSS is through blogging. They start off blogging because it’s so easy and you don’t need to know anything at all about design. Soon after, the desire …
Often times “tag clouds” use variations in font-size and font-weight to distinguish between heavy use and light use tags. Here is another approach: use rollover boxes of different sizes through varied amounts of padding.
You can set the different sizes …
This is how you create a super basic submit button:
<input type="button" value="Submit" />
All you need to do to replace this default button with an image is to change the type to image and then declare a source image …
Blockquotes are HTML elements that are meant to designate when a particular section of text is being taken from another website or other source. Different browsers have different built-in styling for blockquotes, often just a simple left margin. If you …
One the techniques I have advocated using for a long time is this:
* {
margin: 0;
padding: 0;
}
This is part of the “CSS Reset” theory which helps keep your designs consistent across browsers, a very good thing. …
Sometimes the best way to get inspired to design is to look at other great designs. These designs showcase beauty and function over flashiness. There are some amazing and flashy designs out there where I love the design but …
A “deprecated” element is an element the W3C has designated as outdated. These elements should not be used and are generally considered to be “bad code”. If you use a STRICT DOCTYPE, deprecated elements will not pass validation.
The thing …
Check out the statistics for the screen resolutions of all you hip kids who read CSS-Tricks:
On this site, 800×600 doesn’t even make the top ten. Knowing that, I designed this site to make use of that extra pixel …
I read a comment the other day over on CSS Drive from someone named Slackerbabe that I thought was worth repeating.
…Heres a cool way to remember the order of the four selectors, “LVHA (link visited hover active)”,….
Just think
A textarea is an element on a webpage that you can type into. These are commonly used as commenting areas, contact forms or address entry areas. All browsers have defaults styles for textareas which vary. You can take control of …