How can i create a figure like this


Ilushahot

Do I want to create such a graph using CSS? I browsed and found rectangles, ovals, but haven't come across them yet.

picture:
picture

Accompanying Afif

A skew transform can do this:

.box {
  height: 400px;
  width: 400px;
  position: relative;
  border-left: 5px solid blue;
  overflow: hidden;
}

.box::before,
.box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  box-sizing: border-box;
  border-top: 5px solid blue;
  border-right: 5px solid blue;
  transform-origin: bottom;
  transform: skewX(8deg);
}

.box::after {
  transform: scaleY(-1) skewX(8deg);
}
<div class="box"></div>

Related


How can i create a figure like this

Ilushahot Do I want to create such a graph using CSS? I browsed and found rectangles, ovals, but haven't come across them yet. picture: Accompanying Afif A skew transform can do this: .box { height: 400px; width: 400px; position: relative; border-left:

How can i create a figure like this

Ilushahot Do I want to create such a graph using CSS? I browsed and found rectangles, ovals, but haven't come across them yet. picture: Accompanying Afif A skew transform can do this: .box { height: 400px; width: 400px; position: relative; border-left:

How can i create a figure like this

Ilushahot Do I want to create such a graph using CSS? I browsed and found rectangles, ovals, but haven't come across them yet. picture: Accompanying Afif A skew transform can do this: .box { height: 400px; width: 400px; position: relative; border-left:

How can i create a figure like this

Ilushahot Do I want to create such a graph using CSS? I browsed and found rectangles, ovals, but haven't come across them yet. picture: Accompanying Afif A skew transform can do this: .box { height: 400px; width: 400px; position: relative; border-left:

How can I create this figure?

Vlad_glivuk enter image description here I'm having a problem with my layout. Can anyone help me make this shape with html/css? Citadel H I recommend using the following HTML: div { width: 20em; height: 20em; border-radius: 50%; background-color: #F0AC

How can I create a layout like in the image?

icosahedron I want an image like this but when the texts are not of equal length the distance between the TextViews changes and when there are too many words go to the next line. The xml code for the layout I created is: <?xml version="1.0" encoding="utf-8"?>

How can I create a shape in android like the image I added?

Aksukumar Maldeh Can anyone tell me how to create a shape that is somewhat rectangular but ends up being a triangle. Jack' I would use the gradient image from the drawable folder. Let's call it background.png. You can also do it with the icons searchicon.png a

How can I create a (collection?) view like the example I provided

kai-353 I am trying to create a view for some appointments. The picture I provided is the app we are using right now. It accesses the same API as mine, so we return the exact same information. What I'm really trying to recreate here is the view where you can s

How can I create a shape in android like the image I added?

Aksukumar Maldeh Can anyone tell me how to create a shape that is somewhat rectangular but ends up being a triangle. Jack' I would use the gradient image from the drawable folder. Let's call it background.png. You can also do it with the icons searchicon.png a

How can I create a TreeView like a Microsoft application

Karim H Hello I am trained to develop an application but I want to add a tree with a specific look and feel and I managed to do it but the look and feel I have is not what my client wants to develop with MFC and C++ application. My application looks like this:

How can I create h1 like in the example?

Emre Aydin I want to create h1 header as below example. I saw this kind of title on some website and I can't remember its address now. Copy it from their website if I remember. Unfortunately I forgot. Here's a screenshot of the PSD: (Source: hizliresim.com ) A

How can I create a list that looks like a chart legend?

Treycos I'm trying to describe different parts of an image (Sublime Text interface here) and have highlighted multiple areas of the image with colored rectangles I'm now trying to define what's in each rectangle, and for that, I'd like to have some kings that

How can i create a second image instead of filling like words

Kady I have the code below. I use this to use 1 image and use the "rel" and "title" tags to fill in the words to display with the actual image. This will create a banner-like system that uses text instead of all images. Right now, what I'm trying to do is popu

How can I create a counter in my tab layout like Whatsapp?

Raul Astet Right now I just have a simple tab layout using a view pager. I would like to know how to customize my tab layout so that I have a feature in my app such as in my view pager that shows the number of items for that fragment in my recycler view. thank

How can i create a swipe button like Uber android app

Rakesh Kumar Hi all I am instructing me how to create Uber bottom button in android. Any sample code or code suggestions. Uber bottom button to select car type button Gjson Use android ui widgets seekbar. and customize your style.

How can i create a swipe button like Uber android app

Rakesh Kumar Hi all I am instructing me how to create Uber bottom button in android. Any sample code or code suggestions. Uber bottom button to select car type button Gjson Use android ui widgets seekbar. and customize your style.

How can I create a TreeView like a Microsoft application

Karim H Hello I am trained to develop an application but I want to add a tree with a specific look and feel and I managed to do it but the look and feel I have is not what my client wants to develop with MFC and C++ application. My application looks like this:

How can I create a TreeView like a Microsoft application

Karim H Hello I am trained to develop an application but I want to add a tree with a specific look and feel and I managed to do it but the look and feel I have is not what my client wants to develop with MFC and C++ application. My application looks like this:

How can I create a UNIX group hierarchy like the one below?

Kent Pawar I need to create a hierarchy of UNIX groups. As follows: A |\ | \ B c |\ D e |\ f g ...where A, B, and D are UNIX groups, and c, e, f, and g are UNIX accounts that belong to those specific groups. I've googled a lot but it doesn't seem possible. C

How can I create an instance like Objective-C?

imiteora Usually, I create an instance of a class like this: Parent class: @interface baseClass + (instancetype)task; @end @implement baseClass + (instancetype)task { return [[[self class] alloc] init]; } @end Then in the children class: @