Create Outlined Div Boxes (see-through) with Arrows and Pointers, Using CSS

preview_player
Показать описание
Here's how to create and style just the outline of a div box (see-through) complete with arrows / pointers. This technique uses only basic HTML and CSS. No JavaScript required. Code snippet for this effect is in the comments section below.
Рекомендации по теме
Комментарии
Автор

I really appreciate the way you explained the things in a very simple way with visual representation and break it down to make it easy to absorb. Really great tutorial.

nirajregmi
Автор

I like when people write html this way. Just a simple div instead of making more classes than you need to, mainly because makes css easier

durrhurr
Автор

some kind of magic you have done. thank you so much it solved my
6yars old video...why you stooped updating new content it'll help the community
thanks again.

MuhammadImran-sod
Автор

wow, 10 seconds in the video and i already know how to do it. Amazing!

abhinavsinghchauhan
Автор

Man you are really amazing.First time seing someone explaining something so easily and with calm voice.Great job man.I wish you had more tutorials on youtube.
With you understanding and practicing css is just like learning abc.

LiaSueKim
Автор

Super easy, I love how simple this is. Great video!

rebelmachine
Автор

The way you explain is beautiful yaar ...you are a coach by birth i guess 😇

hiphopKrantikari
Автор

It is amazing video pro if it isn't the best ever I have seen, simple but perfect approach
you deserve more likes and subscribers just keep making videos

ahmedfarag
Автор

Its been a great learning experience from your tutorials. Keep uploading new videos.. thanks again

deepakkumarmohanty
Автор

whaooo im studying in college and have to make my first live website and submit it on November 1st and have to say your videos are really advanced and cool and i will definitely be using this in it !!! THANKS A LOT DUDE

BLITZftw
Автор

am the person after watching this video, who likes your video, comment and a new subscriber
amazing sir appreciate

ImranAhmed-ypsj
Автор

Its been a great learning experience from your tutorials, thanks

visakhpr
Автор

A very well explained video.... now I'll always remember this concept. Thanks a lot for making this amazing video Arjun

bijay
Автор

Appreciate the help man! This was straightforward and awesome👍

alphabutbeta
Автор

Awesome! I was looking for a responsive arrow... Thanks Arjun..

hhh
Автор

Nice! saved me a lot of time plus the code is clean and simple!

qamarramzan
Автор

Really nice and cool tutorial straight to the point. thank you !!!

musadanjuma
Автор

This video is a follow-up companion tutorial to an earlier one on how to create div boxes with arrows. Here's the code snippet for this tutorial. Click on 'Read More' to expand. Enjoy!

<style>
body{
background: #de302f;
}

.container{
position: relative;
max-width: 600px;
height: auto;
border: 2px solid
margin: 100px auto;
padding: 30px;
box-sizing: border-box;

}

.container:after{
position: absolute;
width: 50px;
height: 50px;
border-top: 0px solid
border-right: 2px solid
border-bottom: 2px solid
border-left: 0px solid
top:100%;
left: 50%;
margin-left: -25px;
content: '';
transform: rotate(45deg);
margin-top: -25px;
background: #de302f;
}
</style>
</head>


<body>
<div class="container">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
</body>

ArjunKhara
Автор

thank you it was really useful and easy to understand!

rasoulhosseini
Автор

this is beautiful way i like it sir keep it up

anakyouzogoloov