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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:38:50+00:00 2026-05-23T03:38:50+00:00

Is <area> still the best way to handle irregular navigation menus, or is there

  • 0

Is <area> still the best way to handle irregular navigation menus, or is there a better way?

My navigation menu looks like this:

enter image description here

  • 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-23T03:38:51+00:00Added an answer on May 23, 2026 at 3:38 am

    You can use standard navigation markup:

    <div id="nav">
        <ul>
            <li><a class="active" href="#">Item</a></li>
            <li><a href="#">Item</a></li>
            <li><a href="#">Item</a></li>
            <li><a href="#">Item</a></li>
        </ul>
    </div>
    

    and then do a 2D CSS transform (skew the element around the Y axis):

    #nav {
        -webkit-transform: skewY(-10deg);
        -moz-transform: skewY(-10deg);
        -ms-transform: skewY(-10deg);
        -o-transform: skewY(-10deg);
        filter: progid:DXImageTransform.Microsoft.Matrix(
            M11=1, M12=0,
            M21=-0.174532925, M22=1);
        transform: skewY(-10deg);    
    }
    

    enter image description here

    See this fiddle for a live example. See this for browser support info.

    How to write the IE filter

    Convert -10 degrees to radian by typing this in google:

    -10 degrees to radian

    You will get:

    -10 degrees = -0.174532925 radian

    Then plug the value in M21.

    Why would you use this method

    1. You’re concerned about page load time and you don’t want another HTTP request for the image.
    2. Standard navigation markup has better semantics especially if you switch to HTML5 and use the nav element which is used by screen readers to figure out where the navigation is.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Really like objectify, although still struggling with what is the best way to structure
I am trying to figure out the best way to handle pages in our
I'm a newcomer to Caliburn.Micro and there are a few things I'm still not
I have an area where the user can draw using a finger. This area
I've made an Area project for my ASP.NET MVC application called 'Admin'. This will
What is the best way to go about having a fog of war type
There are a couple of ways I could do this (That I'm aware of).
There are a lot of questions about salts and best practices, however most of
I went through tons of questions about this subject, but still failed to find
From this MSDN article , there's quite a few ways to hook up a

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.