Search
 
SCRIPT & CODE EXAMPLE
 

CSS

last child after css

menu > li {
  display: inline;
}

menu > li::after {
  content: ' | ';
}

menu > li:last-child::after {
  content: '';
}
Comment

selecting last child css

p:last-child {
  font-size: 0.75em;
}
Comment

last child after css

<menu>
  <li><a href="/member/profile">Profile</a></li>
  <li><a href="/member/options">Options</a></li>
  <li><a href="/member/logout">Logout</a></li>
</menu>
Comment

PREVIOUS NEXT
Code Example
Css :: Align bootstrap container centered vertically 
Css :: change mouse pointer on image hover 
Css :: css percentrage minus px 
Css :: import antd css 
Css :: css inverted border radius 
Css :: tailwind css responsive table 
Css :: how to use local fonts in css 
Css :: css flip animation 
Css :: how many px is iphone 12 pro max css 
Css :: grid css 
Css :: jquery replace css class 
Css :: flickity css 
Css :: horizontal scroll css images 
Css :: @fontface otf 
Css :: how to increase font height css 
Css :: css select all immediate children 
Css :: css in django 
Css :: css text overflow 
Css :: css coor background 
Css :: linux copy directory permissions to another directory 
Css :: use svg icon to before after 
Css :: color td first row css 
Css :: css fontface 
Css :: block elements css 
Css :: call css html 
Css :: flex wrap tailwind 
Css :: Overflow-y scroll always show even it not overflow 
Css :: css scale 
Css :: style button for safari 
Css :: inline block display has margin 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =