OOCSS (Object-oriented CSS) is an initiative by Nicole Sullivan. It is a library, framework and philosophy, giving developers the opportunity to write CSS that is straight-forward to implement, executes fast (as in browser reflows and repaints) and easy to maintain.

learn more… | top users | synonyms

0
votes
0answers
4 views

Best Compass + SMACSS structure?

As a lazy web engineer, one of my passions is always look and try to reach the perfect workflow. So, lately i've read a lot about SMACSS and OOCSS and i want to start applying it to my projects. I've ...
0
votes
1answer
32 views

Hide content but respond to :hover

I am working on a pure oocss approach to creating the charms as found in Windows 8. I have the Dock class finished, but am having problems with figuring out how to "expand" the charm when the mouse is ...
2
votes
1answer
391 views

How exactly does the OOCSS last grid element work

So on OOCSS, they outline their version of a grid. I can't understand exactly what is happening. I know that it is supposed to account for rounding errors with fluid layouts that causes the last ...
0
votes
0answers
20 views

Need help understanding how I should define oocss objects and skins

Before I ask the Question, Here is the code I am referring to: Box Object Used to box off content like an Island or Islet in Bootstrap. .box { margin-bottom: 24px; padding: 12px; } .box--s { ...
1
vote
1answer
43 views

Can Elements contain Blocks in bem

I have been told I was wrong for writing the code like I have below. I suppose elements can not contain blocks and its bad b.e.m. <ul class="b-nav"> <li class="b-nav__item"> ...
0
votes
1answer
36 views

Tersest way of increasing CSS selector' class-level specificity without altering selector scope

I'm currently elaborating a variation on Nicole Sullivan's OOCSS grids module that only requires a single container class to determine the layout of immediate descendants. I'm aware this bears the ...
0
votes
1answer
76 views

Nested Media Object clearfix not working

Using the OOCSS media object from N. Sullivan. I modified the original css to remove overflow hidden and replace it with the micro-clearfix. The problem I'm running into is when I try to nest the ...
1
vote
2answers
110 views

OOCSS Separation of Container and Content?

Question: Is the second OOCSS principle really valid? According to the OOCSS second principle you're not supposed to have location dependent styles: Quote from ...
1
vote
4answers
101 views

Is it better to chain CSS classes or name them separately for modular purposes?

For example, which is better: Method 1 (name classes separately): /* CSS */ .textbox-red, .textbox-green { padding: 10px; border: 1px solid #CCC; border-radius: 10px; } .textbox-red { ...
0
votes
3answers
76 views

Making use of CSS vs Sass (SCSS) - base class issues and redundency

I'm trying to clean up my CSS to be cleaner by using SCSS. Standard CSS: .dark-hr, .light-hr { width: 100%; height: 1px; margin: 15px 0px; } .dark-hr { background-color: #595959; } ...
0
votes
1answer
111 views

Css Media Object Source Order

I love the idea behind using a media object module as described here: http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/ It's css that can apply to lots ...
0
votes
3answers
90 views

modify a css rule object with javascript [duplicate]

Possible Duplicate: Changing a CSS rule-set from Javascript I was wondering if there is any possibility to modify Css stylesheet declarations without going for inline styling. Here is a ...
0
votes
0answers
52 views

oocss style format [closed]

I wonder what is more semantic, faster, great looking css Example 1 (aka oocss with traditional css) <div class="box widget1"></div> <div class="box widget2"></div> <div ...
0
votes
1answer
125 views

Add <b> tag via script for oocss

I'm getting ready to update a website and I'm thinking about using oocss. I know there are a lot of mixed opinions about oocss, but so far it seems like a good choice for my project. The only thing ...
1
vote
3answers
497 views

Impact of OOCSS on website performance - shorter css but bulky html with more classes

I was reading today about OOCSS which says by using that approach have 2 benefits Shorter CSS = Better performance Better maintainability I'm agree with second point but The first benefit point is ...
0
votes
2answers
265 views

oocss-compass plugin setup

I'm having trouble in the setup of oocss-compass plugin. The steps I did: Downloaded the oocss-compass and placed it on my desktop (https://github.com/he8us/oocss-compass) Inside the oocss-compass ...
1
vote
2answers
599 views

jQuery - Simultaneous hover actions on multiple CSS classes

$(document).ready(function() { $('.button').hover(function() { $(this).toggleClass('button-hover',200); },function() { $(this).toggleClass('button-hover',200); }); }); ...
0
votes
3answers
145 views

Is it better to import a pre-written rule for each CSS style or to write your own rule (OOCSS)?

I was reading up a bit on Nicole Sullivan's theory on Object-Oriented CSS. In a nutshell, the basic idea is that instead of starting from scratch each time we style a website, it's probably better to ...
0
votes
2answers
411 views

Text-decoration being cut off by overflow:hidden in certain browsers?

So I'm using the OOCSS media module and I'm putting a link inside of it and the last line of the link is being cut off. To explain for anyone who doesn't know about the framework, it's simple to ...
0
votes
3answers
355 views

Object oriented CSS

I watched this presentation about object oriented css, but I think I either don't understand it correctly or don't understand the benefits of using OO CSS: Example HTML: <div class="border-1 bg-2 ...
1
vote
3answers
1k views

CSS Grids and Responsive Design

I am planning to use a Grid system for a site, but I'd like to be able to break the grid selectively. This would mean, for example, turning an OOCSS size1of2 into a size1of1). Ideally, the html would ...
2
votes
0answers
519 views

Rails 3.1: howto include oocss CSS framework

I am trying to load the OOCSS framework into my new Rails 3.1 application. So far I have clone the project into /vendor/assists/stysheets/oocss, and tried to pull in the project from ...
2
votes
1answer
519 views

Has anyone combined OOCSS with another grid framework?

I'm sold on the benefits of using Nicole Sullivan's Object-Oriented CSS philosophy/coding methodology/whatever. In particular, I'm keen to use principles such as the "media block" in the sites I'm ...
25
votes
6answers
4k views

Does anyone know of a CSS documentation tool?

We have recently rebuilt our site using the OOCSS principles that allow for a really modular way to write CSS. The site is large and has many devs working on it so I want to be able to document the ...
1
vote
4answers
2k views

Anyone Using Nicole Sullivan's Object Oriented CSS Framework? [closed]

Edit: Due to an excellent comment by Kobi pointing to this StackOverflow Question, I have amended the question below: Has anyone out there tried out Nicole Sullivan's Object-Oriented CSS framework or ...
14
votes
8answers
1k views

Object Oriented CSS: Catchy Buzz-phrase or Legitimate Design Approach?

It seems there is a new catch-phrase emerging in the web development field: object-oriented CSS. On the face of it, this strikes me as simply being best-practice packaged up in a catchy slogan. I ...
9
votes
10answers
917 views

Object oriented CSS: should it matter?

I've just found this interesting presentation about the concept of "object oriented CSS". It seems to be a good idea but the presentation is rather short and doesn't give a lot of examples. My ...