Need to place arrow between two city's names, please check the code. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Need to place arrow between two city's names, please check the code.

html code <div style="display:inline-block;"> <div style="text-align:center;display:inline-block;"><span>Bengaluru</span><br><span class="text-muted">HSR Layout</span> <div class="arrow"> <div class="line"></div> <div class="point"></div> </div> <div style="text-align:center;display:inline-block;"><span>Hyderabad</span><br><span class="text-muted">Mehandipattanam</span> </div> </div> </div> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> <!-- jQuery library --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <!-- Latest compiled JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> CSS CODE .arrow { width:214px; } .line { margin-top:5px; width:199px; background:blue; height:3px; float:left; } .point { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 8px solid transparent; border-left: 15px solid blue; float:right; }

15th Mar 2020, 6:10 AM
Learner
5 Answers
15th Mar 2020, 6:34 AM
Calviղ
Calviղ - avatar
+ 2
I dont understand
15th Mar 2020, 6:38 AM
Cmurio
Cmurio - avatar
+ 2
It's a css for making arrows
15th Mar 2020, 8:41 AM
Learner
+ 1
Please make it in Sololearn Playground and share code here.
15th Mar 2020, 6:13 AM
A͢J
A͢J - avatar
+ 1
Kirti Shukla How come `border-top` and `border-bottom` has 'solid transparent'? How can it be solid and transparent at same time? and essentially, how does it work? T.I.A 🙏
15th Mar 2020, 8:34 AM
Ipang