background preloader

Code

Facebook Twitter

HTML CSS Button Positioning. CSS Layout - Horizontal & Vertical Align. Jquery-mousewheel/jquery.mousewheel.min.js at master · jquery/jquery-mousewheel. Html - Set mouse wheel to horizontal scroll using css. Alternative Style: Working With Alternate Style Sheets. So you’ve got a web page.

Alternative Style: Working With Alternate Style Sheets

You’ve marked it up with structural XHTML. You’ve also been a good little web developer and used style sheets to control what your document looks like. You’ve even gone the extra mile and created several alternative style sheets to show how hardcore you are. Article Continues Below Great. Styling your site#section1 Style sheets can be associated with documents using a list of link elements in the head.

Persistent#section2 These style sheets are always enabled (they are always “on”) and are combined with the active style sheet. To make the style sheet paul.css persistent, the following link element would be included in the head: Preferred#section3 These style sheets are enabled by default (they are “on” when the page is loaded). To make a style sheet preferred, the rel attribute is set to “stylesheet” and the style sheet is named with the title attribute.

Several preferred style sheets can be grouped together by giving them identical title attributes. Cookies#section7. 21 Awesome @font-face Embeddable Typefaces. The 2 most popular typefaces used on the web today are surely Verdana and Georgia.

21 Awesome @font-face Embeddable Typefaces

They’re great and I used them all the time since they’re web-safe fonts. I use them mostly because I’m not a big fan of flash replacement techniques or solutions that require Javascript (sIFR, Cufon, etc…). But what about the @font-face CSS property? While @font-face may not work in all browsers, I think it’s still one of the best solution available today. Of course not all type foundries will let us embed their fonts on our webpages. The @font-face CSS Property Before you can start using those typefaces on your site you need to declare the font file(s) in your CSS file along with the font-weight and font-style if available. How do I switch my CSS stylesheet using jQuery? HTML link rel Attribute. Responsive web design - HTML and CSS Beginners tutorial - Part 29. How to Turn Any Site Into a Responsive Site.

I remember the time when our biggest worry was about making stuff work in IE6.

How to Turn Any Site Into a Responsive Site

And sometimes I think that it was far easier then. Now we have not only to worry about IE crazy stuff (though now it’s much better) but also with a lot of new browsers /OS combinations and also a lot of screen sizes. We can’t deny the power of mobile design. Actually, research shows that in a few years mobile will overtake desktop browsing. But also, you can’t live in the future and need results now. Here we’ll see a few ways to take your current site and turn it into a mobile friendly one, with little effort.

So, let’s rock! What is this responsive thing, and why should I care? Photo By: Yutaka Tsutano Responsive design is when your site automatically fits in the user’s device. But why should I do all of this? First of all, it’s far easier than you’d ever imagine. With so many tools out there, all you’ve got to do is to know the basics to create great mobile versions of sites. Keypoints OS and browsers Screen sizes. CSS: centering things. See also the index of all tips.

CSS: centering things

Centering lines of text The most common and (therefore) easiest type of centering is that of lines of text in a paragraph or in a heading. CSS has the property 'text-align' for that: renders each line in a P or in a H2 centered between its margins, like this: The lines in this paragraph are all centered between the paragraph's margins, thanks to the value 'center' of the CSS property 'text-align'. Centering a block or image Sometimes it is not the text that needs to be centered, but the block as a whole.

This rather narrow block of text is centered. This is also the way to center an image: make it into block of its own and apply the margin properties to it. The following image is centered: Centering vertically CSS level 2 doesn't have a property for centering things vertically. The example below centers a paragraph inside a block that has a certain given height. This small paragraph is vertically centered. Overflow Scroll css is not working in the div. How to display images horizontally? - HTML & CSS - The SitePoint Forums. Hi, I want to display 12 images horizontally in a single row using <div> & <span>.

How to display images horizontally? - HTML & CSS - The SitePoint Forums

Each and every image will come with a span or div. I have tried to do the same by using the following code. but its coming fine only for the 2 images...if it goes more than 2 than the alignment is not looking good. can anyone help me? Html - I'm trying to display images horizontally using CSS.