Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7650779
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T11:20:24+00:00 2026-05-31T11:20:24+00:00

i have simple html within it i have one parent div and its have

  • 0

i have simple html within it i have one parent div and its have 3 child div, every child contains a same headinig tag “h3” i want to add 10px padding in h3 tag excluding first tag without interact with html. for example first h3= padding top=0; second h3= padding top=10px; third h3= padding top=20px;

<style>

.main { width:980px; margin:0 auto; border:solid 1px #F00; overflow:hidden}

.box { width:300px; float:left; margin-right:20px; background:#00F; height:200px;}


</style>

<script type="text/javascript" src="jquery/jquery-1.7.min.js"></script>
<script type="text/javascript">
$(function(){
    //code

    })

</script>

</head>

<body>
<div class="main">
<div class="box"><h3>first</h3></div>
<div class="box"><h3 style="padding-top:10px;">second</h3></div>
<div class="box"><h3 style="padding-top:20px;">third</h3></div>

</div>

</body>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T11:20:25+00:00Added an answer on May 31, 2026 at 11:20 am

    Use the :not and :first selectors:

    $('.main h3:not(:first)').css('paddingTop', '10px');​
    

    Demo: http://jsfiddle.net/ambiguous/f3fmC/

    If there are other <h3>s in .main and you’re only interested in those inside .box, then adjust the selector:

    $('.main .box:not(:first) h3').css('paddingTop', '10px');​
    

    Demo: http://jsfiddle.net/ambiguous/DYTmL/

    And if you want to use an increasing padding-top, iterate through the <h3>s with each:

    $('.main h3:not(:first)').each(function(i) {
        $(this).css('paddingTop', (i + 1) * 10);
    });​
    

    Demo: http://jsfiddle.net/ambiguous/QuyWj/

    Or simpler:

    $('.main h3').each(function(i) {
        $(this).css('paddingTop', i * 10);
    });​
    

    Demo: http://jsfiddle.net/ambiguous/YAYJw/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple html page with a div. I am using jQuery to
I have a simple html multiline tooltip implementation: this.tooltip = function(tag) { xOffset =
I have a really simple set up: <div class="container"> <ul> <li>Item one</li> <li>Item two</li>
I have a simple ul horizontal menu that exists within a div that is
I have simple HTML code with some JavaScript. It looks like: <html> <head> <script
I have a simple HTML. I am using the JQuery for AJAX purpose. Now,
I have a simple html block like: <span id=replies>8</span> Using jquery I'm trying to
I have a simple HTML (as HTA) application that shows strange behavior on Windows
I have a simple HTML Table (10 columns x 500 rows). When the page
I have a simple html form. On php page. A simple list is placed

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.