There are 3 text fields in columns (created by wordpress themes using shortcodes), I want to collapse / expand the text at the point of a break by clicking on ellipsis depending on the amount of text, but the problem is that neither classes nor div and span tags skip the shortcodes of the topic (columns) except for the simplest p , br , strong . How can I do that? It can be assumed that all columns in the minimized size will be the same height. fiddle
.row > div { background: lightgrey; border: 1px solid grey; } <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <link rel="stylesheet" type="text/css" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"> <div class='row'> <div class="col-xs-4"><p>Текст текст...текст текст</p></div> <div class="col-xs-4"><p>Текст текст...текст текст</p></div> <div class="col-xs-4"><p>Текст текст...текст текст</p></div> </div>
span не пропускают столбикиmeanspan не пропускают столбики? - Jean-Claude