Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am still struggling to find a good naming convention for assets like images, js and css files used in my web projects.

So, my current would be:

CSS: style-{name}.css
examples: style-main.css, style-no_flash.css, style-print.css etc.

JS: script-{name}.js
examples: script-main.js, script-nav.js etc.

Images: {imageType}-{name}.{imageExtension}
{imageType} is any of these

  • icon (e. g. question mark icon for help content)
  • img (e. g. a header image inserted via <img /> element)
  • button (e. g. a graphical submit button)
  • bg (image is used as a background image in css)
  • sprite (image is used as a background image in css and contains multiple "versions")

Example-names would be: icon-help.gif, img-logo.gif, sprite-main_headlines.jpg, bg-gradient.gif etc.

So, what do you think and what is your naming convention?

share|improve this question

5 Answers

up vote 8 down vote accepted

I place CSS files in a folder css, Javascript in js, images in images, ... Add subfolders as you see fit. No need for any naming convention on the level of individual files.

share|improve this answer

For large sites where css might define a lot of background images, a file naming convention for those assets comes in really handy for making changes later on.

For example:

[component].[function-description].[filetype]

footer.bkg-image.png
footer.copyright-gradient.png

We have also discussed adding in the element type, but im not sure how helpful that is and could possibly be misleading for future required changes:

[component].[element]-[function-description].[filetype]
footer.div-bkg-image.png
footer.p-copyright-gradient.png
share|improve this answer
/Assets/
  /Css
  /Images
  /Javascript (or Script)
    /Minified
    /Source

Is the best structure I've seen and the one I prefer. With folders you don't really need to prefix your CSS etc. with descriptive names.

share|improve this answer
I like this but I think the more common root folder is "public" or "content". – Brian Boatright Jul 14 '10 at 19:26

The BBC have tons of standards relating web development.

Their standard is fairly simple for CSS files:

http://www.bbc.co.uk/guidelines/futuremedia/technical/css.shtml

You might be able to find something useful on their main site:

http://www.bbc.co.uk/guidelines/futuremedia/

share|improve this answer

First, I divide into folders: css, js, img.

Within css and js, I prefix files with the project name because your site may include js and css files which are components, this makes it clear where files are specific for your site, or relating to plugins.

css/mysite.main.css css/mysite.main.js

Other files might be like

js/jquery-1.6.1.js js/jquery.validate.js

Finally images are divided by their use.

  • img/btn/submit.png a button
  • img/lgo/mysite-logo.png a logo
  • img/bkg/header.gif a background
  • img/dcl/top-left-widget.jpg a decal element
  • img/con/portait-of-something.jpg a content image

It's important to keep images organized since there can be over 100 and can easily get totally mixed together and confusingly-named.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.