Home › Forums › CSS › Hide Text Characters Around Elements › Re: Hide Text Characters Around Elements
May 7, 2013 at 11:51 am
#134352
Participant
This works:
ul {
position: relative;
left: -1000px;
}
li {
position: relative;
left: 1000px;
}
Maybe with overflow: hidden on parent element. Keep in mind though it’s not valid html so some browsers might do funky things and you’ll end up seeing the pipes anyway… maybe.