The data on YGOCounter is in early stage. We're looking for your contribution!. If you find this site useful, kindly share with your friends and playgroups.


The chat feature is just implemented. Feel free to join or read the chat log here.

Template:Cell hover show more/styles.css

From YGOCounter
/*
 * fixed table layout
 */
table {
  table-layout: fixed;
}
/*
 * width and overflow
 * inline-block elements expand as much as content
 * relative position makes z-index work
 * explicit width and nowrap makes overflow work
 */
.showmore {
  display: inline-block;
  position: relative;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*
 * higher z-index brings element to front
 * auto width cancels the overflow
 */
.showmore:hover {
  z-index: 1;
  white-space: normal;
  width: auto;
}