Answers for "css select last eement"

CSS
1

css select last character

:first-child        :first-of-type        :only-child
:last-child         :last-of-type         :only-of-type                  
:nth-child          :nth-of-type    
:nth-last-child     :nth-last-of-type

::first-letter      ::first-line          ::first-word
::last-letter       ::last-line           ::last-word
::nth-letter        ::nth-line            ::nth-word
::nth-last-letter   ::nth-last-line       ::nth-last-word
Posted by: Guest on July-19-2020
5

selecting last child css

p:last-child {
  font-size: 0.75em;
}
Posted by: Guest on January-31-2020

Browse Popular Code Answers by Language