html, body {
  height: 100%;
}
#list .textar1 {
  display: flex;
  flex-direction: row;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
#list{
	counter-reset:section 0;
}
#list .textar1::before{
	counter-increment: section;
	content: counter(section)'.';
 	margin-right: 0.5rem;
}
