A web developer's blog. PHP, MySQL, CakePHP, Zend Framework, Wordpress, Code Igniter, Django, Python, CSS, Javascript, jQuery, Knockout.js, and other web development topics.

Tag Archives: css

CSS to Remove New-lines or Breaks After Form Tags

Put this inside your form tags: style="margin: 0pt; display: inline;" //so it would be something like: &lt; form style="margin: 0pt; display: inline;"&gt; Input boxes here…< / form >

Posted in General | Tagged , | Leave a comment

CSS: Float-clearing, getting containers to honor the height of floated elements inside of them

I accidentally stumbled on this article found at Agile AJAX. It talks about float-clearing, getting containers to honor the height of floated elements inside of them. Here is a sample CSS code: /* float clearing for IE6 */ * html … Continue reading

Posted in General | Tagged | Leave a comment