Joined April 2013
·
Posted to
Windows 7/8 GodMode control settings shortcut
over 1 year
ago
That's nice.
Do you have more Information about the Code in the Brackets?
I would like to define a "customized GodMode" :)
Posted to
Rapid HTML with Emmet
over 1 year
ago
Here's a good screencast about Sublime with Emment:
https://tutsplus.com/lesson/emmet/
Posted to
Clearfix Me !
over 1 year
ago
Some people use zoom: 1;
or height: 1%
to trigger hasLayout
in IE. But as far as i know it's only needed for inline-block
elements
You can read more about hasLayout
here:
http://www.satzansatz.de/cssd/onhavinglayout.html
Posted to
Clearfix Me !
over 1 year
ago
i use this one for better x-browser compatibility:
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix { display: inline-block; }
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }
Achievements
136 Karma
7,473 Total ProTip Views
Cub
Have at least one original jQuery or Prototype open source repo
Nephila Komaci
Have at least one original repos where PHP is the dominant language
Charity
Fork and commit to someone's open source project in need
@pdaoust
In my opinion, IE7 should be just ignored but some of the Clients doesn't thinks so.
By the way, i really like IE's attempt to give us the opportunity to enhance the CSS by JS.
The
expression
property as well as thebehaviour: *.htc
i would like to see some kind of this in the next generaton of CSS to enable really dynamic stylesheets and get rid of jQuery design enhancements