Posted by Marcel Scherf on August 11, 2008
If you would like to send HTML Emails with all the bells and whistles that Actionpacks Actionview provides checkout my freshly released plugin awesome_email on github.
It will enable you to use layouts/templates for your HTML Emails and it will inline CSS information inside the HTML to make sure it works in almost all Email clients.
For [...]
Posted by Marcel Scherf on July 8, 2008
Asynchronous full duplex channels for JavaScript – wouldn’t that be sweet? This would mean realtime applications without plugins or hacks. Ajaxian has the story: Legitimizing Comet with HTML 5 WebSocket
Posted by Marcel Scherf on July 4, 2008
Found at: Position is everything
Normally you would add an element like this:
<div style=”clear:both”> </div>
after your floating elements to clear them. With this method you don’t need to do this anymore.
Just add this to your stylesheet:
.clearfix:after {
content: “.”;
display: block;
height: 0;
clear: both;
[...]