Archive for the ‘CSS2’ Category
-
When working with objects of an input form, then we have a problem is the style for the Browse button to tuonng (input type=file) is not changeable. That when we change the style for other objects of the form while keeping the button that appears to be not homogeneous, because the display of this button [...]
-
09.10.10
CSS3 Animation: Transition
The motion effects in CSS3 are from two main properties is Transition and Animation. From these two attributes you can do many effects without javascript. In this section we will talk about the transition In normal state, the # csstrans width is 100px, when hover over (using pseudo-class: hover), the width is 200px. And the [...]
-
It is still possible to write valid code that specifically targets IE6 without resorting to traditional hacks or conditional CSS in additional files. For example, minimum heights can be defined using the code: view plainprint? 1234567891011#element { min-height: 20em; height: auto !important; /* understood by all browsers */ height: 20em; /* IE6 [...]
-
Problem: The CSS Light box script will not appear on top of a Flash movie, this disrupts the actual function of the script. Add the following setting(s) to the Flash HTML code: 1<param name="wmode" value="transparent"/> Also add this to the tag 1wmode="transparent" Be sure to add both of these settings for this to work properly, [...]
-
Problem: Various sizes, margins and padding attributes can display differently in Internet Explorer, this coded snippet can help you sort out these problems. Add this code with your required settings underneith your pages <style> or external style link: 12345678<!–[IF IE]> <style> .item { margin: 5px; padding: 10px; } </style> <![EndIf]–> These setting will now only [...]
-
When we use the dropdown menu, dropdown content, or javascript to use effects like thickbox or lightbox. If the text shows that there are overlaps the select list of website box, with Firefox or other browsers will perform normally, but in IE6 will display the Select Box above the content. We will use a java [...]
-
06.04.10
Ie6 PNG Fix use CSS
For your web design, surely you’ve ever spent inserting a photo. Png on the website. For most of this new browser is, the problem of the png file has become outdated over, but with its own browser IE6 or below, it is a big problem. There are a few ways to fix this error by [...]
-
06.04.10
Jquery Dropdown Menu
Dropdown Menu is a CSS and JavaScript hybrid drop down menu. It’s easy to configure and search engine friendly. The main menu bar consist of a CSS list, while the drop down menus are simply regular DIV tags on page. Thanks to JavaScript, the menu supports subtle Style: 1234567891011121314151617#pad {height:200px;} /* for this demo only [...]
-
06.04.10
CSS Text Shadow
The text-shadow declaration allows you to create a text shadow; i.e. a slightly moved, slightly blurred copy of a text. it could be useful in designs. Can use text-shadow property, but will not display well in IE6. We can create shadow effects by generating two overlapping words, same site but with two different font colors [...]
