border is not showed | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

border is not showed

I have this code html <span>2007 <br> 2008 <br> 2009<br> 2010</span> and for this i have css code span { border-right: solid 5px black;} but when it runs border is represented only near number 2010 not only near whole column why that ?

31st Jul 2017, 3:56 PM
Nuruddin
Nuruddin - avatar
7 Answers
+ 5
The <span> element is of type 'inline'... so <br> inside is not very logical (you break the inline specificity) ;) Anyway, trying to put border on all side (border:solid 2px red;) will show you how inlined element borders are handled ^^ So, to have border on whole right side in whole height of <span>, it need to be of type 'block' (as a <div>, that you could use instead), but in this case, width of element is default whole width available, so right border will be on most right... probably not your expect ;P To join behaviour of 'block' elements for the border, and behaviour of 'inline' elements for auto-width, you can use the css 'display:inline-block' property/value: span { border-right: solid 5px black; display:inline-block; }
2nd Aug 2017, 1:25 AM
visph
visph - avatar
+ 1
You have the border aligned to the right where you typed border-right: solid 5px
31st Jul 2017, 4:02 PM
S C
+ 1
sorry I don't understand your answer
31st Jul 2017, 4:47 PM
Nuruddin
Nuruddin - avatar
+ 1
Here is an example of how to create borders around data, Also you should be using a table instead of a span https://code.sololearn.com/Wm8hD2a7m1FZ/#html
31st Jul 2017, 4:59 PM
S C
+ 1
thanks ! I mean I want border on the whole right side not only near 2010
31st Jul 2017, 5:17 PM
Nuruddin
Nuruddin - avatar
0
thanks for answer
2nd Aug 2017, 8:00 PM
Nuruddin
Nuruddin - avatar
0
thanks !
7th Aug 2017, 7:14 PM
Nuruddin
Nuruddin - avatar