Skip to main content

Home/ CSS Evangelist/ Group items tagged ways

Rss Feed Group items tagged

Scott Hendrickson

A List Apart: Articles: Frameworks for Designers - 0 views

  • How should a CSS framework be built? There are several possible ways to go about building a framework, but the most common and arguably the most useful is to abstract your common CSS into individual stylesheets that each cover a particular part of the whole. For example, you may have a stylesheet that sets up the typography and another that handles the mass reset. The beauty of the approach is the ability to selectively include only the styles that you need. You may end up with six or seven different stylesheets in your framework, but if a particular project doesn’t need one or two of them, they don’t have to be included. The framework we created in our office has five stylesheets: reset.css—handles the mass reset. type.css—handles the typography. grid.css—handles the layout grid. widgets.css—handles widgets like tabs, drop-down menus, and “read more” buttons. base.css—includes all the other stylesheets, so that we only need to call base.css from our (X)HTML documents to use the entire framework.
  • A word of caution This method works quite well, but there is a valid concern to be raised: it adds to the number of HTTP connections needed to render each page. On large, high-traffic sites, adding five more HTTP connections to every page view may result in angry system administrators. Two possible solutions to this are: Include everything in a single file, rather than breaking it into modules. The problem here is that you lose the ability to include only certain parts of the framework, and you also make maintenance more difficult. Have a server-side process that dynamically flattens the individual files into a single response. I’ve not seen this done, but it could be very efficient if done well. Using my example framework above, this dynamic process could occur when base.css is requested, but not when type.css, grids.css, etc. are. This way, the individual components are still available, but the entire framework is available in a flattened version, as well.
Frederik Van Zande

Introduction to CSS3 - Part 4: User Interface | Design Shack - 0 views

  •  
    This tutorial will be taking a look at some of the new ways you can manipulate user interface features in CSS3. But what do we mean by "user interface"? CSS3 brings some great new properties relating to resizing elements, cursors, outlining, box layout and more. We're focusing on three of the most significant user interface enhancements in this tutorial. The examples shown below can be seen at our CSS3 examples page. Many, however, can only be appreciated in the latest builds of various browsers:
my mashable

Quub : New Micromessaging Service, Update Your Online Status - 0 views

  •  
    In the past years communication and way to communucate changes dramatically. The advent of the social and mobile web has made it easy to connect to large groups of people. Web technologies are used to connect millions of people online. This eases the sharing information simpler. Following the Social media smashers Twitter and FaceBook, It's tome now to micromessagging service from Quub, In this fast moving world stay connected over millions of people is a real tough one. To effectively deal with maintaining so many connections, frequent status updates have emerged as a popular method of staying in contact.
my mashable

AppLocker Block Listed Application on Your Computer - 0 views

  •  
    AppLocker provides a comfortable way to block software programs from being executed on a target system. If you need to prevent an application from running accidentally or would like to disable an application you can't uninstall, AppLocker provides a simple interface to do so.
my mashable

"Forget Tabs" The Future Of Tabs in Firefox 3.2 - 0 views

  •  
    Firefoxquickly became the favorite browser for most power users. But while extensions are a great way to make Firefox more functional. In January 2000, T-Online asked Oliver Reichenstein, what we'd do if we could design a browser from scratch. The answer was "Tabs". Eight years later Aza Raskin, head of user experience at Mozilla, again asked about the future of new tab. Oliver Reichenstein answer after days of mailing back and forth: "Forget tabs!"
Alexis Sgavel

A new micro clearfix hack - Nicolas Gallagher - 0 views

  •  
    The clearfix hack is a popular way to clear floats without resorting to using presentational markup. This article presents an update to the clearfix method that further reduces the amount of CSS required.
Meet John

most likes on facebook - 0 views

  •  
    SocialMediaPenguin.com has an experienced team that will work with you every step of the way to help you reach your business goals. You will not have to worry about a thing when you choose our services. Just sit back while we complete all the work for you.
Meet John

likes on facebook - socialmediapenguin - 0 views

  •  
    SocialMediaPenguin.com has an experienced team that will work with you every step of the way to help you reach your business goals.We are here to make sure that the number of fans on your page increase significantly in just a matter of days
Vernon Fowler

Opera Developer News - Why use @supports instead of Modernizr? - 0 views

  • The reason to use @supports over Modernizr is performance; functionality that's built into the browser will always be faster than adding it in script. Removing an external dependancy saves an HTTP request to download Modernizr and doesn't require time to execute the JavaScript.
  • Should you use Modernizr or @supports? The answer is definitively "it depends". As with all web projects, only you can decide which is the best way.
tech vedic

Computer security outlook: Online identity theft and juxtaposed security initiatives - 0 views

  •  
    E-commerce, gaming, and social networking sites are grabbing the maximum attention, where you knowingly, or sometimes even unknowingly submit your personal information. And, Internet perpetrators are taking advantage of the pervasive Internet, people's growing dependencies on the Web, and addiction thereof. Thus, what you share on the Web, and with whom you share is an area of concern.
LinkSture Technologies

MUU - Unique and Creative Resume / Portfolio Template - 0 views

  •  
    MUU is a creative, unique design, minimal and onepage vCard / Resume HTML5 template to showcase your resume and portfolio to the world in interactive way. Each and every section is detailed designed with creative eye and of course navigating different sections is really smooth, user-friendly and something different.
Gran Trabajo

Web Design Hamilton is a Leading Web Design Company - 1 views

Every business should have their brand represented on the world wide web with a professionally designed website. The internet has redefined the way businesses are found and viewed. Your company web...

web design Hamilton

started by Gran Trabajo on 30 Apr 12 no follow-up yet
Vernon Fowler

Font sizing with rem - Snook.ca - 0 views

  • The problem with em-based font sizing is that the font size compounds. A list within a list isn't 14px, it's 20px. Go another level deeper and it's 27px!
  • The rem unit is relative to the root—or the html—element. That means that we can define a single font size on the html element and define all rem units to be a percentage of that. html { font-size: 62.5%; } body { font-size: 1.4rem; } /* =14px */ h1 { font-size: 2.4rem; } /* =24px */
  • We can specify the fall-back using px, if you don't mind users of older versions of Internet Explorer still being unable to resize the text (well, there's still page zoom in IE7 and IE8). To do so, we specify the font-size using px units first and then define it again using rem units. html { font-size: 62.5%; } body { font-size: 14px; font-size: 1.4rem; } /* =14px */ h1 { font-size: 24px; font-size: 2.4rem; } /* =24px */
  • ...3 more annotations...
  • I'm defining a base font-size of 62.5% to have the convenience of sizing rems in a way that is similar to using px.
  • consistent and predictable sizing in all browsers, and resizable text in the current versions of all major browsers
  • The compounding nature of em-based font-sizing can be frustrating so what else can we do?
tech vedic

How to Clone a Hard Drive? - 0 views

  •  
    In case your hard drive is damaged or corrupted then it is better to have functional copy of the drive where you can store your stuff immediately. Cloning a drive is a good option for handling such situations. Have a look on this tutorial.
tech vedic

Phone-scams-and-computer-repair-know-your-facts-to-protect-your-computer - 0 views

  •  
    In case, you are getting a phone call regarding your PC infection then no need to respond. This is not a help from technical vendor but a scam.
tech vedic

Repair disk permissions to speed up your Mac - 0 views

  •  
    Whenever you install something in Mac OS X then it gets installed from package files. Along with installing something from package files, a "Bill of Materials" file is stored in the package receipt file. These ".bom" files contain a list of the files installed by that package as well as the proper permissions for each file. But, in future, these permissions can get changed resulting in freezing or crashing of your Mac.
« First ‹ Previous 41 - 60 of 92 Next › Last »
Showing 20 items per page