CSS

There are 4 entries for the tag CSS

Web Application Performance: CSS Data URIs

Was doing my daily research today and learned a couple of new and interesting things. A while back, I wrote a post about rendering options using .NET 3.5 SP1's charting component. I outlined a few of the more conventional/out-of-the-box methods (temporary directory, binary streaming). I also outlined a lesser-known technique in which you stream binary data to the src attribute of your <img> tag. That ends up looking like this... <img src='data:image/png;base64, iVBORw0KGgoAAAA[snip]; />...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

ASP.NET Performance Tips

In the post below I am going to run down a short-list of some of the less-popular performance tips and the reasoning behind them. There are loads of blog postings and articles on asp.net performance enhancements, and I urge you to check those out as well. Onto the good stuff... Session.ReadWrite versus Session.ReadOnly It goes without saying that using the Session object will incur some performance overhead so if possible it should be turned off in the web.config. That said, If you’re using the Session...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Internet Explorer, CSS, and Image Quality

Came across an interesting post on the Joel Spolsky's blog the other day...Seems like all browsers besides IE use bicubic interpolation for image scaling.. As Joel mentions though, all you need to do is add img { -ms-interpolation-mode:bicu... } to the appropriate section/tag in your cascading style-sheet. Joel also has an example on his blog post if you'd like to see the evidence. Technorati Tags: CSS,Internet Explorer...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

CSS Tags Specific to Browser [IE6, IE7]

I came across this posting on Ed Eliot's blog and had NO idea this existed but it made my life a lot easier. Full credit goes to him on this - the below is cut and pasted directly from his blog so I know where to find it in the future. The URL for this post on his blog is: http://www.ejeliot.com/blog/63 .box { background: #00f; /* all browsers including Mac IE */ *background: #f00; /* IE 7 and below */ _background: #f60; /* IE 6 and below */ padding: 7px; color: #fff;} I think it speaks for itself....
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Twitter