Mani Maran
Posts: 0
Joined: Tue Jul 21, 2015 12:49 am

border bottom is missing in list?

first i add list to my app page then i separate space between the list using the css lines

[dsid=mobilelist_40] li + li {
margin: 10px 0;
}

then i tested the app. first child of the list has four side borders and other child of list has three side borders (bottom border is missing for other childs of the list except the first child of the list?) Image

Mani Maran
Posts: 0
Joined: Tue Jul 21, 2015 12:49 am

border bottom is missing in list?

I tried this css lines but nothing works

[dsid=mobilelist_40] li {
border-width: 1px !important;
}

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

border bottom is missing in list?

Hello Mani,

Please use this CSS:

pre[name=mobilelistName] li{
margin-top:100px!important;
}
[name=mobilelistName] li:nth-child(1){
margin-top:0!important;
}/pre

here mobilelistName - mobilelist's name

Mani Maran
Posts: 0
Joined: Tue Jul 21, 2015 12:49 am

border bottom is missing in list?

I don't want space between the list. All i want is bottom border for all childs of list

Mani Maran
Posts: 0
Joined: Tue Jul 21, 2015 12:49 am

border bottom is missing in list?

Anybody answer me and my problem wasn't yet solved

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

border bottom is missing in list?

Please change CSS above to this:

[name=mobilelistName] li{
border-top:10px solid red;
}

Mani Maran
Posts: 0
Joined: Tue Jul 21, 2015 12:49 am

border bottom is missing in list?

Thank you for the reply but i already solved it

Return to “Issues”