<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Sealyu

    --- 博客已遷移至: http://www.sealyu.com/blog

      BlogJava :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
      618 隨筆 :: 87 文章 :: 225 評(píng)論 :: 0 Trackbacks

    15 CSS Tricks That Must be Learned

    by Drew Douglass in General

    As web designers and developers, we have all come to learn many css tricks and techniques that help us achieve our layout goals. The list of these techniques is an ever expanding one, however, there are certain tricks that are essential to achieve your goal. Today, we will review 20 excellent css techniques to keep in mind when developing your theme.


    1. Absolute positioning inside a relative positioned element.

    Putting an absolutely positioned element inside a relatively positioned element will result in the position being calculated on its nearest positioned ancestor. This is an excellent technique for getting an element to “stick” in a certain spot where you need it, for instance, a header badge.

    Demo 1

    Read more about positioning:

    2. Z-Index and positioning.

    z-index can be somewhat of a mystery to developers. Often, you will find designers putting a very large z-index value on a div or element in order to try and get it to overlap another element. What we need to keep in mind, is that z-index only applies to elements that are given a “position” value. If you find an element will not adhere to a z-index rule you’ve applied, add “position:relative” or “position:absolute” to the troublesome div.

    Demo 2

    Read more about z-index:

    3. Margin Auto

    Using margin auto in a theme is a fantastic way to get an element centered on the screen without worrying about the users screen size. However, “margin: auto” will only work when a width is declared for the element. This also means to apply margin: auto to inline elements, the display first must be changed to block.

    Demo 3

    Read more about margin auto:

    4. Use Padding Carefully and Appropriately

    One mistake I often made when starting off with css was using padding without knowing all the effects and the CSS Box Model. Keep in mind that according to the box model, padding adds to the overall width of the element. This can cause a lot of frustration with elements shifting out of place. For example:

    #div { width:200px; padding: 30px; border:2px solid #000; }

    Equals a total width of 264px (200 + 30 + 30 + 2 + 2). In addition, remember that padding, unlike margins, cannot contain negative values.

    Read more about padding:

    5. Hiding text using text-indent

    Lets say you have an image you are using for your websites logo. This image will be inside an h1 tag, which is good for SEO, however, we also want to have our text title written in the h1 tags so the search engines can read it easily. Some may be tempted to use “display:none” on an element. Unfortunately, we would have to separate the image logo from the h1 tag if we used this technique. Using text-indent and negative values, we can get passed this like so.

    h1 { text-indent:-9999px;/*Hide Text, keep for SEO*/ margin:0 auto; width:948px; background:transparent url("images/header.jpg") no-repeat scroll; }

    This will ensure that all text is not visible on any resolution while allowing it stay inside the h1 element containing the logo. This also will not hide the text from screen readers as display none will.

    Read more about using text-indent to hide text:

    6. IE Double Float Margin Bugs

    I’m sure we have all dealt with this one, as this is one of the most common css “hacks” we need to use. If you haven’t seen this bug before, basically, a floated element with a given margin suddenly has doubled the margin in IE 6 and has dropped out of position! Luckily, the fix is super simple. We just change the display of the floated element to “inline” as seen below.

    .yourClass { float: left; width: 350px; margin: 20px 0 15px 100px; display: inline; } Demo 6

    This change will have no effect on any browsers since it is a float element, but for some reason in IE it fixes the double margin issue.

    Read more about IE’s margin bug:

    7. Using CSS to Fight Spam

    This would be something you could include to really spice up your theme description. Alen Grakalic of CSS-Globe.com wrote a fantastic post on how to use css as a kind of CAPTCHA technique. A form is declared like so:

    <label for="Name">Name:</label> <input type="text" name="name" /> <label class="captcha" for="captcha">Answer?</label> <input type="text" name="captcha" id="captcha" />

    For the id “captcha”, we use a background image via css. This would require the spam scripts to find your html element, scan your css, compare selectors, find the certain selector and background image, and then read that background image. Its pretty safe to say most wont be able to do this. The downside is if someone is not surfing with css enabled, they wont know what to do.

    Demo 7

    Read more about using css to fight spam:

    8. PNG in IE 6 Fixes

    I’m sure we could all agree dealing with transparent png’s in IE 6 is a real headache. The fixes range from complex Javascript techniques to just using a Microsoft proprietary filter, to using conditional comments to swap them out for a .jpg. Keep in mind, all of these but the conditional comments rely on the Microsoft AlphaImageLoader.

    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(...);

    Read more on how to fix IE 6 PNG transparency:

    9. CSS Cross Browser Transparency

    Believe it or not, it is pretty simple to get decent cross browser transparency using css. We can cover, IE, Firefox, Safari, Opera, and old browsers like Netscape Navigator. Chris Coyier recently came to our rescue again demonstrating these techniques.

    .yourClass { filter:alpha(opacity=50);/*Needed for IE*/ -moz-opacity:0.5;/*Older mozilla broswers like NN*/ -khtml-opacity: 0.5;/*Old versions of Safari and "KHTML" browser engines*/ opacity: 0.5;/*FF, Safari, and Opera*/ } Demo 9

    This wont validate, but its not really an issue and the ThemeForest staff is pretty understanding when it comes to techniques like this.

    Read more about CSS Opacity

    10. Use CSS Image Sprites

    CSS Image sprites are a fantastic way to load many of your css images at one time, in addition to reducing http requests and the file size of your theme. In addition, you wont have to deal with any images “flickering” on hover. CSS Image sprites are achieved by putting many of your image elements all into one image. We then use css to adjust the background position, width, and height to get the image where we want it.

    Demo 10

    Resources for image sprites:

    11. Use Conditional Comments to support IE 6

    Far too often, web developers are forced to introduce new css rules and declarations that only apply to certain versions of IE. If your not familiar with a conditional comment, the code below would only link to a style sheet if the users browser is less than or equal to IE 7:

    This code would go in the head section of your html file. If the css does not seem to be taking place in IE after you have linked to your specific style sheet, try getting more specific with your css selections to override default styles.

    Read more on conditional comments:

    12. CSS Specificity

    As mentioned above, CSS styles follow an order of specificity and point values to determine when styles override one another or take precedence. Nettuts recently had a nice article in which the point values for css were explained. They are like so:

    • Elements – 1 points
    • Classes – 10 points
    • Identifiers – 100 points
    • Inline Styling – 1000 points

    When in doubt, get more specific with your style declarations. You can also use the !important declaration for debugging purposes if needed.

    Demo 12

    Read more about css specificity:

    13.Achieving a minimum height in all browsers.

    When developing, we often realize we need an element to have at least a certain height, and then stretch to accommodate more content if needed. Unfortunately, IE doest recognize the min-height property correctly. Fortunately, we have what is known as the min-height fast hack, that goes like so:

    #yourId { min-height:300px; height:auto !important; height:300px;/*Needs to match the min height pixels above*/ } Demo 13

    Simple, effective, and it validates just fine. This is also one of the few cases when the !important feature comes in great handy.

    Read more about the min height hack:

    • Using the min height fast hack
    • 14. The * HTML hack

      If you need or wish to avoid linking to IE specific style sheets, one can use the * html hack. In a perfect world, the HTML element will always be the root element, so any * before html would not apply. Nevertheless, IE treats this as a perfectly legitimate declaration. So if we needed to target a certain element in IE, we could do this:

      * html body div#sideBar { display:inline; }

      Read more about * html hack:

      • More on the Star HTML Bug
      • Explanation of the star HTML bug
      • 15. Sliding Doors Technique

        One major problem with using images for navigation buttons, is that you run the risk of the clients text being too long and extending past the button, or being cut off. Using two images and the css sliding doors technique, we can create buttons that will expand to fit the text inside. The idea behind this technique, is using two images for each button, and applying the images via a background declaration in CSS. For example:

        HTML Markup: Your Title CSS: a.myButton { background: transparent url('right.png') no-repeat scroll top right; display: block; float: left; height: 32px; /* Image height */ margin-right: 6px; padding-right: 20px;/*Image Width*/ /*Other Styles*/ } a.myButton span { background: transparent url('button_left.png') no-repeat; display: block; line-height: 22px; /* Image Height */ padding: /*Change to how you see fit*/ } Demo 15

        Read more about sliding doors technique:

        And there you have it, a list of 15 css techniques to help you when developing a theme. CSS is great for designers as it allows us to be creative with code and use our own techniques to accomplish a job. That said, what are some of the techniques the developers of ThemeForest use? What would you add to the list?

    posted on 2009-09-24 08:42 seal 閱讀(227) 評(píng)論(0)  編輯  收藏 所屬分類: CSS
    主站蜘蛛池模板: 亚洲精品国产成人专区| 亚洲成AV人网址| 16女性下面扒开无遮挡免费| 2021久久精品免费观看| 国产午夜影视大全免费观看 | 免费a级毛片无码a∨免费软件| 性xxxx视频免费播放直播| 免费观看的a级毛片的网站| 亚洲国产综合人成综合网站| 亚洲大香伊人蕉在人依线| 2022免费国产精品福利在线| 亚洲日本在线免费观看| 亚洲人成激情在线播放| 抽搐一进一出gif免费视频| 毛片免费观看的视频在线| 久久久青草青青亚洲国产免观| 亚洲国产乱码最新视频| 国产一二三四区乱码免费| 亚洲av片劲爆在线观看| 一个人看的www在线免费视频 | 色欲aⅴ亚洲情无码AV| 免费视频精品一区二区三区| 免费成人黄色大片| 亚洲精品色播一区二区| 99久久免费精品视频| 久久精品国产精品亚洲色婷婷| 中文字幕免费在线观看动作大片| 亚洲免费视频网站| 成人黄页网站免费观看大全| 一级日本高清视频免费观看 | 亚洲日韩中文字幕无码一区| 曰批视频免费40分钟试看天天| 亚洲偷自拍另类图片二区| 国产精品成人免费福利| 国产精品亚洲专一区二区三区 | 亚洲精品A在线观看| 免费人成视频在线观看网站| 亚洲欧美综合精品成人导航| 国产精品亚洲精品日韩已满| aa级女人大片喷水视频免费| 久久影院亚洲一区|