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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T11:12:39+00:00 2026-06-11T11:12:39+00:00

Possible Duplicate: How to create a triangle in CSS3 using border-radius Are they possible

  • 0

Possible Duplicate:
How to create a triangle in CSS3 using border-radius

Are they possible to make with CSS?

Normal arrow:

.some_element:after{      
  content: '';
  height: 0;
  width: 0;
  position: absolute;        
  top: 0;
  left: 0;       
  border: 100px solid transparent;
  border-top-color: #000;           
}

( http://jsfiddle.net/W3xwE/ )

Rounded arrow (I want only the bottom side rounded):

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-06-11T11:12:41+00:00Added an answer on June 11, 2026 at 11:12 am

    Yes, it is possible! You rotate the box, give it a border-radius and use a 45deg linear-gradient as a background.

    DEMO

    HTML:

    <div class='arrow'></div>
    

    CSS:

    .arrow {
        width: 7em;
        height: 7em;
        border-radius: 0 0 2em 0;
        margin: 5em;
        transform: rotate(45deg);
        background: linear-gradient(-45deg, black 50%, transparent 50%);
    
    }
    

    If you want the angle of the arrow to be different, then you can also skew it.

    Take into account the fact that CSS gradients are not supported by IE9 (I am not saying “or older” this time because you mention CSS3 among your tags). The solution in that case would be to use a solid background and to somehow make sure the upper part won’t show, either by covering it with a preceding element, or by clipping it (see the answer Tim Medora provided).

    Also, at this point there is still no support for the unprefixed syntax (although this will soon change 😀 ), so you will need to either manually add the prefixes -webkit-, -moz-, and -o-. (I did not add them in the demo because Dabblet uses -prefix-free which takes care of doing this.)

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

Sidebar

Related Questions

Possible Duplicate: Create an Array of the Last 30 Days Using PHP I am
Possible Duplicate: Create an alert on any view controller after Facebook request:didFailWithError: I have
Possible Duplicate: Using ZXing to create an android barcode scanning app I know it
Possible Duplicate: How do I Create a Comma-Separated List using a SQL Query? I
Possible Duplicate: Create instance of “Class” Using “Reflection” in JavaScript Java has Class.forName(XYZClass) to
Possible Duplicate: Difference of create Index by using include column or not using Edit:
Possible Duplicate: How to create custom modal segue in 4.2 Xcode using storyboard So
Possible Duplicate: How to create custom modal segue in 4.2 Xcode using storyboard I'm
Possible Duplicate: How to create a windows service from java app How to make
Possible Duplicate: How to create a linux user using C/C++? Is there any way

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.