css change hover size depending on header length -
hello im new this. have created webpage links running horizontally across page. when hover on each title has background colour. hover size fixed size. want know how can hover automatically adjust depending on link length. /* change link color #272727 on hover */
li a:hover { background-color:#272727; max-width:200px; }
thanks help
it looks me "max-width: 200px;" css property isn't required. try:
li a:hover { background-color:#272727; }
without specifying explicit max width, link elements size width of parent li. when set background colour on hover, entire word highlighted, without overflow.
but if provide fiddle confirm, that'd helpful!
Comments
Post a Comment