[SOLVED] tabs with CSS

This is a discussion on "[SOLVED] tabs with CSS" within the Web Page Design section. This forum, and the thread "[SOLVED] tabs with CSS are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Mar 17th, 2008, 23:23
CloudedVision's Avatar
Nerdy Moderator
Join Date: Feb 2008
Location: In My Own Little World
Age: 14
Posts: 942
Blog Entries: 8
Thanks: 2
Thanked 22 Times in 22 Posts
Send a message via AIM to CloudedVision Send a message via MSN to CloudedVision Send a message via Skype™ to CloudedVision
[SOLVED] tabs with CSS

I want to let my website have tabbed paragraphs. Is there a way to do this in CSS. Something so the first line always start 20px or so more to the right?
__________________
echo "Take it easy, ".$CloudedVision;
.links { site: other-road-design; blog: only-nerds-allowed; project: resource-fish; organization: ARMIES6; }
<quote>&quot;I think it's wrong that only one company makes the game Monopoly&quot; - <name>Steven Wright</name></quote>
Last Blog Entry: More Cheat Sheets (Jul 12th, 2008)
Reply With Quote

  #2 (permalink)  
Old Mar 17th, 2008, 23:40
CloudedVision's Avatar
Nerdy Moderator
Join Date: Feb 2008
Location: In My Own Little World
Age: 14
Posts: 942
Blog Entries: 8
Thanks: 2
Thanked 22 Times in 22 Posts
Send a message via AIM to CloudedVision Send a message via MSN to CloudedVision Send a message via Skype™ to CloudedVision
Re: tabs with CSS

nevermind, text-indent works great
__________________
echo "Take it easy, ".$CloudedVision;
.links { site: other-road-design; blog: only-nerds-allowed; project: resource-fish; organization: ARMIES6; }
<quote>&quot;I think it's wrong that only one company makes the game Monopoly&quot; - <name>Steven Wright</name></quote>
Last Blog Entry: More Cheat Sheets (Jul 12th, 2008)
Reply With Quote
  #3 (permalink)  
Old Mar 18th, 2008, 13:43
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,761
Blog Entries: 1
Thanks: 0
Thanked 18 Times in 18 Posts
Send a message via AIM to moojoo Send a message via MSN to moojoo Send a message via Yahoo to moojoo
Re: tabs with CSS

that or the css property #foo:first-letter etc etc.. so you can just style/target the first letter of any paragraph contained in #foo. Glad you got it sorted though.
__________________
The internet is just a fad.
http://www.mevans76.com
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
  #4 (permalink)  
Old Mar 23rd, 2008, 02:17
New Member
Join Date: Jul 2004
Location: Olympic Penninsula WA
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to capture Send a message via Yahoo to capture
Re: tabs with CSS

If you want ALL your paragraphs to be indented add this to your stylesheet:
Code: Select all
p
{
margin:5px 30px;
text-align:left;
text-indent:20px;
}
Sometimes I don't want a paragraph to indent so I create this class:
Code: Select all
p.noindent
{text-indent:0;}
html would be;
HTML: Select all
<p class="noindent">
Hope this is helpful.

To your Health, Wealth and Success
ClaireP

Last edited by Aso; Mar 23rd, 2008 at 11:08.
Reply With Quote
Reply

Tags
tabs, text-indent

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
staggered tabs in IE7 WebMachine Starting Out 4 Oct 1st, 2007 10:21
jquery tabs prob karloff JavaScript Forum 0 Jul 4th, 2007 21:21
Tabs on my webpage pengyou Starting Out 5 May 23rd, 2007 20:52
CSS tabs titaniumbean Web Page Design 5 Aug 18th, 2005 09:50
[SOLVED] Disable Button while using Tabs Anonymous User JavaScript Forum 1 Sep 14th, 2004 09:12


All times are GMT. The time now is 22:13.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43