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 894065
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:19:18+00:00 2026-05-15T14:19:18+00:00

which is better for use .menu{ float:left; width:600px; height:25px; background:url(bg.png) repeat-x; } .menu ul{

  • 0

which is better for use

.menu{
    float:left;
    width:600px;
    height:25px;
    background:url(bg.png) repeat-x;

}
.menu ul{
    float:left;
}
.menu ul li{
    float:left;
    width:150px;
    height:25px;
    background:#F00;
}

or

.menu{
    float:left;
    width:600px;
    height:25px;
    background:url(bg.png) repeat-x;

}
.menu ul{
    float:left;
}
.menu li{
    float:left;
    width:150px;
    height:25px;
    background:#F00;
}

which tag is right menu ul li or menu li?

  • 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-15T14:19:18+00:00Added an answer on May 15, 2026 at 2:19 pm

    When you say which tag is right menu ul li or menu li?, are you talking about a div with class="menu" or are you talking about the deprecated menu tag (<menu>)?

    If you are just talking about your css code, those are not tags, they are selectors. And I’d go with the most specific selector available in order to avoid accidental assignments

    .menu > ul > li{
        // this matches only list items directly inside a ul directly inside a .menu
    }
    

    even better would be this:

    #menu > ul > li{
        // now you are referencing the menu by id, so you know this is a unique assignment
    }
    

    or, if you have multiple menus:

    #menubar > .menu > ul > li{
    }
    

    because otherwise you are in for surprises, you might actually have a structure like this:
    (this is ugly, I know, but just to prove a point)

    <div class="menu">
        <ul>
            <li>Menu Item 1</li>
            <li>Menu Item 2</li>
            <li>Menu Item 3
            <ul>
                <li id="abc">Menu Item abc</li>
            </ul>
            </li>
            <li>Menu Item 4
            <div><div><div><ol><li><div><ul>
                    <li id="xyz">Menu Item xyz</li>
            </ul></div></li></ol></div></div></div>
            </li>
        </ul>
    </div>
    

    (you probably don’t want to match items abc or xyz).

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

Sidebar

Related Questions

If the value of @param is null, which is better to use: WHERE t.column
Which is better way to use jQuery() ? I've heard that jQuery(element) doesn't ruin
Which approach is better to use if I need a member (sp or func)
Which one is better to use when it come to return value for example
My question is which one is better to use? As NSTimer in turn uses
I don't know which way is better to use about uploading and saving a
Which approach is better: 1) to use a third-party ORM system or 2) manually
which one will be better to use default magic quotes or user defined addslash/stripslash
With .NET, which data access method is better to use LINQ to SQL,entity framework,
Which is better when floating elements to left right? Using a generic .clearfix class:

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.