All Projects → albertogasparin → Borderboxmodel

albertogasparin / Borderboxmodel

Javascript polyfill for CSS3 box-sizing: border-box. For IE6 and IE7

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Borderboxmodel

Frontend Mentor Challenge
Here you will find all the challenges that we took from frontend-mentor.
Stars: ✭ 47 (-35.62%)
Mutual labels:  css3
Web Code Standards
通过分析 Github 众多前端代码库,总结出来的前端代码书写规范。
Stars: ✭ 61 (-16.44%)
Mutual labels:  css3
Orientationchange Fix
基于@media特性实现对原生orientationchange的修复 ( orientationchange-fix is a based on @media attribute to fix orientationchange utility library, orientaionchange polyfill.)
Stars: ✭ 68 (-6.85%)
Mutual labels:  css3
Samsara
☸️ Continuous UI
Stars: ✭ 1,051 (+1339.73%)
Mutual labels:  css3
Vue Mobile Mint
🍔 🍖 🍴基于mint-ui的饿了么外卖平台混合app(仿饿了么)
Stars: ✭ 59 (-19.18%)
Mutual labels:  css3
Dev Practice
Practice your skills with these ideas.
Stars: ✭ 1,127 (+1443.84%)
Mutual labels:  css3
Nodejs Socketio Chat App
MEAN Stack & Socket.IO Real-time Chat App | A MEAN stack based Real Time chat application
Stars: ✭ 45 (-38.36%)
Mutual labels:  css3
Hacktoberfest2020
Contribute for hacktoberfest 2020
Stars: ✭ 72 (-1.37%)
Mutual labels:  css3
Morphist
A simple, high-performance and cross-browser jQuery slider / slideshow / carousel plugin for child objects powered by Animate.css.
Stars: ✭ 60 (-17.81%)
Mutual labels:  css3
Redpacketrain
红包雨
Stars: ✭ 68 (-6.85%)
Mutual labels:  css3
Root Bootstrap 4 Admin Template With Angularjs Angular 2 Support
Root is Boostrap 4 Admin Template with Angular 2 and AngularJS support
Stars: ✭ 54 (-26.03%)
Mutual labels:  css3
Sharebook Frontend
Projeto frontend de código livre para o app Sharebook.
Stars: ✭ 59 (-19.18%)
Mutual labels:  css3
Magz
Free Resonsive HTML5 & CSS3 Magazine Template
Stars: ✭ 64 (-12.33%)
Mutual labels:  css3
Flex One
1 CSS Class Layout System made with Flex
Stars: ✭ 47 (-35.62%)
Mutual labels:  css3
Record
✨✨都是自己输出和看过觉得不错的文章,欢迎star、watch!!同时欢迎推荐新文章、书籍和视频!!
Stars: ✭ 69 (-5.48%)
Mutual labels:  css3
Awesome Flexbox
👓 A curated list of CSS Flexible Box Layout Module or only Flexbox.
Stars: ✭ 1,034 (+1316.44%)
Mutual labels:  css3
Pure Css3 Animated Border
Pure CSS3 animated border for all html element.
Stars: ✭ 63 (-13.7%)
Mutual labels:  css3
Iconicss
More than 900 pure CSS3 icons!
Stars: ✭ 72 (-1.37%)
Mutual labels:  css3
Basecss
CSS基类,减少浏览器差异,常用CSS类名
Stars: ✭ 69 (-5.48%)
Mutual labels:  css3
Blog
📚 专注Web与算法
Stars: ✭ 1,140 (+1461.64%)
Mutual labels:  css3

# Border-box model support for Internet Explorer 6-7

One of the new, shiny CSS3 proprieties that you can start using today is box-sizing. This propriety allows you to switch between box models.

As of today, the browser support is really wide and this propriety works on:

  • Firefox 1+ (with the -moz prefix)
  • Safari 3+ (with the -webkit prefix)
  • Opera 8.5+
  • Internet Explorer 8+

This script will enable the border-box model also in IE6 and IE7 without trigger the Quirks Mode.

# Basic usage

The function has no dependency, just put the minified version of the script at the bottom of the page, before the </body>, so it will be lauched as soon as possible. To be sure that it is executed only if the version of IE is prior to 8, use the conditional comments:

<!--[if lt IE 8 ]>
<script>
    var borderBoxModel = ...
</script>
<![endif]-->

# Known issues and limitations

  • Currently it works only if padding and border are set in px.
  • Width and height are written inline, so no fluid behaviour (es. onresize, min/max-width,...)
  • Probably it needs more tests with complex layouts (with negative margins, ...)

# More info

Read my article about the CSS3 box-sizing propriety

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].