Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用文本溢出省略号样式时,在 IE 浏览器中正确对齐某些文本时遇到问题。当将此样式放置在跨度上时,以下跨度会与省略号不符,似乎会导致中断。这里的例子
那是因为您使第一个span元素显示为display:inline-block.
span
display:inline-block
要么显示其余的跨度,要么设置vertical-align:text-bottom为第一个跨度。
vertical-align:text-bottom
I am having problem with List Object values. Object is an object of class which holding two integer number.
like
List<Object> container; container.Add(new Coordinates(x_axis, y_axis)