Skip to main content

Home/ CSS Evangelist/ Group items matching "replacement" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
7More

Replacing the -9999px hack (new image replacement) - Jeffrey Zeldman Presents The Daily... - 0 views

  • My friend Scott Kellum, design director at Treesaver, has now sent me this refactored code for hiding text, which I hereby christen the Kellum Method: .hide-text { text-indent: 100%; white-space: nowrap; overflow: hidden; } Really long strings of text will never flow into the container because they always flow away from the container. Performance is dramatically improved because a 9999px box is not drawn. Noticeably so in animations on the iPad 1.
  • Scott Kellum said on 1 March 2012 at 3:41 pm: I went ahead and created a side by side site to test the performance: http://lab.pgdn.us/hidden-text-performance/ @Ethan, This is the best 43min I have ever spent learning about optimizing the performance of my CSS: http://www.youtube.com/watch?v=xuMWhto62Eo
  • Would be interesting to understand both the SEO and accessibility impacts of this approach.
  • ...4 more annotations...
  • Scott Kellum said on 2 March 2012 at 4:06 pm: After much deliberation over here: https://github.com/h5bp/html5-boilerplate/issues/1005#issuecomment-4293007 Jonathan Neal suggested a method using font: 0/0 serif; and things seem to be settling on this — .ir { font: 0/0 serif; text-shadow: none; color: transparent; }
  • While I think this is certainly and interesting approach, I have some concerns with the accessibility. In some, if not all, cases when overflow: hidden; hides the content of the element this is applied to from screen readers. In most cases where I use image replacement, I still need the text to be accessible (e.g. call to action buttons set in Gotham). See Aaron Gustafson’s A List Apart article, http://www.alistapart.com/articles/now-you-see-me/. Has anyone tested this with a wide battery of screen readers or other accessibility devices?
  • Another note on accessibility: Besides the screen reader problems – people who don’t get images will not see the text too.
  • As a few people said already, this does not solve the accessibility problem that comes with text-indent. Worse, it may send the wrong message: “this is new and cool, use this from now!”. As a leader in the industry, I think you should warn people that even if this is “better” in term of performance, it is still a bad solution. Imo, Image Replacement techniques should be evaluated against the problems they solve/address. Fwiw, I wrote something about these challenges a few years back: http://tjkdesign.com/articles/tip.asp </shameless plug>
1More

Is GIMP a Replacement Tool For Photoshop - 0 views

  •  
    The GIMP (GNU Image Manipulation Program, previously General Image Manipulation Program) is a free software, raster graphics editor used to process digital graphics and photographs. GIMP can also be used to create basic animated images in GIF format. It is often used as a replacement for Adobe Photoshop, the most widely used bitmap editor in the printing and graphics industries; however, it is not designed to be a Photoshop clone.
1More

CSS3 Playground by Mike Plate - 7 views

shared by yc c on 11 Aug 10 - Cached
  •  
    The CSS3 Playground is a web application for experimenting with some new css3 capabilities. Primarily those than conform to the progressive enhancement philosophy, which means that the styles can be used on all sites without severely changing/limiting the experience on browsers that does not support them (=Internet Explorer 8.0 and older). But there are also styles that may need better replacements on Internet Explorer such as rotation, and I hope I will have the time to add more in the future.
1More

cufón - fonts for the people - 0 views

  •  
    Fast text replacement with canvas and VML - no Flash or images required.
1More

Emblematiq :: Niceforms :: Overview - 0 views

  •  
    Web forms. Everybody knows web forms. Each day we have to fill in some information in a web form, be it a simple login to your webmail application, an online purchase, or signing up for a website. They are the basic, and pretty much the only way of gathering information on the web. You basically know a web form when you see one as they always look the same and they've kept this look over the years. Try as hard as you might but web forms can only change their appearance so much. Some may argue that this is a good usability feature, and I tend to agree, but there comes a time when you just need to style web forms so that they look different. How do you do that? Niceforms comes to the rescue! Niceforms is a script that will replace the most commonly used form elements with custom designed ones. You can either use the default theme that is provided or you can even develop your own look with minimal effort.
1More

Dell laptop Batteries-replacement for Dell Inspiron battery and Dell Latitude laptop ba... - 0 views

    • anonymous
       
      The website is espcially designed for Dell laptop batteries.The replacement Dell inspiron battery and Dell latitude battery for every kind of Dell laptop computer.Do you have a Dell notebook computer?Do you need a such battery?Come here to find what you need.Good luck!
1More

jQuery sIFR Plugin - 0 views

  •  
    The jQuery sIFR Plugin is an addon for jQuery that makes it easy to replace text in a web page with flash text (sIFR).
1More

swfIR: swf Image Replacement - 0 views

shared by yc c on 09 Mar 09 - Cached
  •  
    swfIR (swf Image Replacement) is here to solve some of the design limitations of the standard HTML image and its widely-accepted associated CSS values, while still supporting standards-based design concepts.
1More

NealGrosskopf.com l CSS Template Layouts: A Simpler CSS Layout System, Now Possible Wit... - 1 views

  •  
    A new layout system to replace floats or display:table or html tables. Based on the W3C's proposed 'CSS Template Layout Module' for CSS3; but using jquery to take advantage of this technique today.
1More

Replace CSS Colors - Editor - 5 views

  •  
    Tool to easily change the color theme of a stylesheet
1More

Ten CSS One-Liners to Replace Native Apps ∙ An A List Apart Blog Post - 3 views

  •  
    Basic knowledge for html that fits in any gadget clearly Conocimiento basico para html que pueda verse claramente en cualquier dispositivo
3More

Web Designer Notebook » How to use Modernizr - 0 views

  • Modernizr doesn’t actually magically enable these properties for browsers that don’t support them. It just tells the page whether that feature is supported on the browser the visitor is using or not.
  • To install Modernizr, download the file from this page. Then, on your site’s head tag, add a link to the file. For example: ?1<script src="js/modernizr-1.0.min.js"></script> The second step is to include on your html tag a class of “no-js”: ?1<html class="no-js"> Why add this tag? Because that will be the default state of the page. If JavaScript (js) isn’t on, then Modernizr won’t work at all (and probably other features of your site won’t work either…), so it’s good that we have a fallback for that case. If JavaScript is indeed enabled, once that page is loaded on the browser, that class will be replaced dynamically and it may look something like this: ?1<html class="js canvas canvastext geolocation rgba hsla no-multiplebgs borderimage borderradius boxshadow opacity no-cssanimations csscolumns no-cssgradients no-cssreflections csstransforms no-csstransforms3d no-csstransitions  video audio cufon-active fontface cufon-ready">
  •  
    "There is a tool that came to make our lives as progressive web designers a bit easier: Modernizr. In this short tutorial, learn how to apply this handy script to maximum effect on your sites."
1More

Top 10 Things to maximize the performance of your cell phone - 0 views

  •  
    There are many things which you can take care to maximize the performance of your phone. Some important top ten tips are here in this tutorial.
1More

Use Onefeed to replace your New Tab page in Chrome - 0 views

  •  
    Want to add information on your new Tab page in Chrome? Here is a solution with OneFeed. With OneFeed, you can add custom newsfeed as well as get alerts from your social media accounts.
1More

dell inspiron laptop battery,dell inspiron notebook battery from www.dell-laptop-batter... - 0 views

    • anonymous
       
      We specialize in dell laptop batteries replacement for dell 1691p,dell 1g222,dell 6y270,dell 1X793,dell 312-001,dell bat30wl,dell 312-0083,dell 312-0151,dell 312-0079,dell 55506,dell 2834t,dell 312-0058,dell 7012p,dell 8012p.
1More

Dell laptop batteries 1691p replacement for DELL 1691P battery - 0 views

    • anonymous
       
      Shop for Dell inspiron battery and Dell latitude battery, buy cheap Dell laptp batteries and discount laptop battery, for example, Dell 1691p battery,Dell 1X793 battery,Dell 6y270 battery,Dell 312-0068 battery,Dell 312-0078 battery and so on!
1More

FUJIFILM FINEPIX 402 | Lithium FUJIFILM FINEPIX 402 Digital Camera Batteries - 0 views

    • anonymous
       
      Replacement FUJIFILM NP-40 battery,LI-ION battery,3.7V volt, 710mAh capacity,price only £ 11.30 (S&H rates),i think i can consider it.
1 - 20 of 35 Next ›
Showing 20 items per page