Clearing the floats, overflowing the layout

CSS Web development July 5th, 2008

Float is an often misunderstood CSS property, however when used properly it can be a very useful technique for implementing CSS layouts.

Quoting the CSS standards guide at the w3c website:

A float is a box that is shifted to the left or right on the current line.

...

This property specifies whether a box should float to the left, right, or not at all.

The float property pulls an element out of the normal flow and places it in either the left or right ends of the current line inside its containing block element. Other elements will then wrap around the floated element, providing they have enough space to do so (if the cumulative width of the elements is too wide, they will slide to the next line).

Read more »


The life expectancy of IE6

Interesting The Webs Web development July 3rd, 2008

Internet Explorer 6 (abbr. IE6) is the biggest thorne in a web developer's behind at current times. This legacy browser, released almost 7 years ago, is known for its multitude of offenses on security and standards compliance and still has a sizeable user base to this day. Its market share makes it impossible for us developers to ignore it still, despite how much we would want to do just that.
Read more »


Content syndication needs rebranding

Open Source The Webs July 1st, 2008

Content syndication or Feeds, is a mashup of technologies that provides an easy way to keep track of updates from multiple content sources. Despite being very useful, it has yet to find widespread acceptance amongst Internet users.

Direct usage statistics are hard to ascertain with great precision, but they revolve around 4%-6% of the total Internet population, which is not much. More feeds are being consumed indirectly by aggregation sites, such as my yahoo and iGoogle (as this Yahoo! paper shows), which shows that there is market ready to consume more feeds.

So why feed usage isn't more widespread? Read more »


Passing arrays to Zend_Controller_Router

PHP Web development Zend Framework June 23rd, 2008

WARNING: The following contains unsanctioned HACKS to the Zend Framework. Use at your own discretion.

A big advantage to using the front controller in the Zend Framework is the ability to create nicely formatted urls. Instead of an ugly GET string we can pass parameters as slash delimited key -> value pairs. For example:
www.techfounder.com/index.php?post=passing_arrays&comment=3 can be replaced with www.techfounder.com/post/passing_arrays/comment/3
(On techfounder this is actually performed via mod_rewrite rules, but the principle is the same).

The implementation of the default router in the Zend Framework (Zend_Controller_Router_Rewrite) does not allow for passing arrays in this manner though, since previously set keys get overwritten if they are declared more than once. This is somewhere between semi-annoying to very annoying, so lets get straight to hacking it into submission.
Read more »


HTML 5 shaping up nicely

CSS Javascript The Webs Web development June 20th, 2008

Left for dead by many, HTML resurfaced half a year ago when the w3 released a working draft for the next version of this markup language. The draft was recently updated and a document detailing the differences from the previous version was released as well.
Read more »


 Page 12 of 18  « First  ... « 10  11  12  13  14 » ...  Last »