Linked Questions
21 questions linked to/from How to make 3-corner-rounded triangle in CSS
0
votes
1
answer
240
views
Rounded triangle right border css [duplicate]
How can I create a triangle with rounded vertices? Previously, I've created a square with the ::after pseudo element and rotated it, which looked like romb and then clipped it because I didn't get the ...
2
votes
0
answers
73
views
Round corners of a polygon [duplicate]
I am trying to round the corners of a polygon as can be seen in this image:
Here is my current code:
@import url("https://fonts.googleapis.com/css?family=K2D");
* {
box-sizing: border-box;
}
...
0
votes
1
answer
52
views
Making soft edged triangle animation [duplicate]
Trying to make soft edged triangle animation, but couldn't make the triangle edges perfectly bended softly.
As a output I am trying to make this. triangly animation
.triangle{
position:...
63
votes
8
answers
171k
views
How to round out corners when using CSS clip-path
I want to be able to round out the 3 leftmost corners on this shape that I have created, any idea how that can be done?
div {
position: absolute;
z-index: 1;
width: 423px;
height: ...
13
votes
6
answers
27k
views
How to make a rounded corner hexagon by using CSS
This is my CSS:
#hexagon {
width: 100px;
height: 55px;
background: red;
position: relative;
border-radius: 10px;
top: 30px;
}
#hexagon:before {
content: "";
...
5
votes
2
answers
7k
views
Top/Right triangle with text in CSS
First, I'm just starting out in HTML and CSS.
How I want to use this code:
https://codepen.io/martinjkelly/pen/vEOBvL
.container {
width: 250px;
height: 250px;
position:relative;
...
0
votes
2
answers
9k
views
CSS Rhombus with angles (120, 60, 120, 60)
Is it possible to create a Rhombus shape with pure CSS with the angles at 120deg and 60deg opposites?
-1
votes
2
answers
2k
views
Doughnut chart with rounded corners - is it possible? [closed]
I need to implement this as doughnut chart - I looked around for css/svg/canvas solutions but couldn't find any reliable way of doing it.
I know I could have fully rounded corners of each segment, ...
3
votes
2
answers
4k
views
How to create a bulged div using css?
How to create a bulged div using css?
Using any sort of distortion without using any svgs.!
Following is code for creating a rounded div.
But how can I add a little bit of bulge to it so that it looks ...
0
votes
4
answers
3k
views
css rounded corner of right angled triangle
I am creating a small stylised triangular motif 'before' my h1 element, but I am not able to get the corners rounded correctly. The top right is fine but the other two has this clipping issue.
Here ...
1
vote
2
answers
2k
views
How do I draw a bottom-right triangle with a curved border?
As stated on CSS-Tricks, a CSS triangle can be written as:
#triangle {
width: 0;
height: 0;
border-bottom: 100px solid red;
border-left: 100px solid transparent;
}
<div id="...
0
votes
1
answer
2k
views
Image inside triangle css?
I'd like to achieve a custom image triangle shape with rounded corner like this using css
I looking for how achieve like this but nothing,
i want to achieve my css can do result like this,any ideas?
...
1
vote
2
answers
2k
views
How to create play button with border-radius?
Hi I'm trying to make a Pomodoro clock. I've made a play button by removing border-right and increasing border-left width to create a triangle.
My questions is - how do I apply border-radius to it?
...
1
vote
2
answers
962
views
add border top right radius only without other sides or background
I am trying to achieve the top right triangle as in the picture shows but when I apply border radius why does it apply borders to all side as I specified only one side radius. Although I applied ...
4
votes
2
answers
259
views
Drawing curvy triangle in css for menu
I'm trying to make a menu with a curvy triangle pointers. I tried but not able to achieve the curvy one.
<div>
</div>
div{
position:relative;
left:20%;
height:250px;
...