Vasiliy Selivanov

  • RSS

The next version of Flex – Gumbo

Posted on Wednesday, July 16th, 2008

The next version of Flex, code name Gumbo, is now in active development. It is has 3 primary themes: Design in Mind: provide a framework meant for continuous collaboration between designer and developer. Developer Productivity: improve compiler performance and add productivity enhancements to language features like data binding Framework Evolution: take advantage of new Flash [...]

continue reading

Edit bitmap properties for selected bitmaps in library

Posted on Monday, September 8th, 2008

its Flash CS3: “Edit Selected Bitmaps”-Panel. thanks to Hannes Moser. Download it impossiblearts.com/blog/2008/06/16/flash-cs3-edit-selected-bitmaps-panel/   Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post

continue reading

21 Awesome (But Lesser-Known) Open-Source Applications for Windows

Posted on Sunday, April 13th, 2008

Unless you’ve been hiding under a rock in Madagascar for the last few years, you undoubtedly already know about the All-Star open-source applications for Windows. I’m talking about applications such as Firefox, Thunderbird, GIMP, OpenOffice, and VLC. However, there are hundreds of lesser-known but highly-useful open-source applications available for Windows. A few of my favorites [...]

continue reading

Clearfix

Posted on Monday, September 8th, 2008

I want to share with you great css feature called clearfix. So use it instead of clear:both, and you will be happy. Many times this feature help me in my projects

Using is pretty simple

1
 

<div class="clearfix">

    <div style="float:left;"></div>

    <div style="float:right;"></div>

</div>

Clearfix class is:

1
<br /><span style="font-family: Courier New;">.clearfix:after {<br />&nbsp;&nbsp;&nbsp;&nbsp;content: &quot;.&quot;;<br />&nbsp;&nbsp;&nbsp;&nbsp;display: block;<br />&nbsp;&nbsp;&nbsp;&nbsp;clear: both;<br />&nbsp;&nbsp;&nbsp;&nbsp;visibility: hidden;<br />&nbsp;&nbsp;&nbsp;&nbsp;line-height: 0;<br />&nbsp;&nbsp;&nbsp;&nbsp;height: 0;<br />}<br /><br />.clearfix {<br />&nbsp;&nbsp;&nbsp;&nbsp;display: inline-block;<br />}<br /><br />html[xmlns] .clearfix {<br />&nbsp;&nbsp;&nbsp;&nbsp;display: block;<br />}<br /><br />* html .clearfix {<br />&nbsp;&nbsp;&nbsp;&nbsp;height: 1%;<br />}</span><br />

 

Posted in: css.