Hi all,

Cek this product tab background. How to create it?

Product Tab

There is no tab in it yet the background seperation look like tab background. Where the gray color looks different from the background.

How to create it?

Thanks.

Recommended Answers

All 2 Replies

You can use your browser's editing tools to see how it is built and designed. For example, use firebug to view the source code and see what their background is. Have you tried that?

It's simple. Nested divs with different background colors.

<div class='back'>

<div class='next'>
<div class='inner'>
</div>
</div>
</div>

<style type='text/css'>
.back{ width:100%; height:100% background-color:#CECECE;}
.next{width:80%; height:80%; background-color:#CDCDCD;}
.inner{width:80%; height:80%; background-color:#FFFFFF;}
</style>

Like so....

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.