Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to rely on more code than images with my web design and in my effort to be more effective in HTML5 and CSS3.

I have searched all Stack Exchange sites but nothing solid resulted. That being said, something I would really like to learn more about is pattern creation with pure CSS for website backgrounds.

I was wondering if this can be created with pure CSS coding?

enter image description here

share|improve this question

migrated from webmasters.stackexchange.com Feb 25 at 14:54

2 Answers

up vote 2 down vote accepted

CSS3 does not have the ability to create patterns on the level that you have in mind. CSS pattens are very basic and use small blocks of patterns to build up a large scalable/repeatable block based background.

CSS patterns are basic your image is not basic

The image that you have used does not repeat and is more suitable for using it as a: {background: url("background.jpg");} or you could use Base64 and embed the image to the CSS file.

Creating basic patterns using C33

There is various ways you can make CSS3 Patterns on the fly using JavaScript/CSS and CSS3. I recommend you check out this article: CSS3 Patterns Explained, or another method of making simple patterns using Base64 embeds is using Patternify.

share|improve this answer

Using the latest browsers (except Internet Exlorer) and CSS3, you can create background patterns using just CSS and no images. These techniques won't be useful in the real world for several years until IE supports it and IE usage of what is now the current browser dies out.

Here is a site that has a collection of CSS3 backgrounds: http://lea.verou.me/css3patterns/ They don't have one that is exactly like yours, however the carbon fiber one is a gray pattern that isn't too different: http://lea.verou.me/css3patterns/#carbon

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.