1
Good need to make the text that is within the class div txt
has line break. Follow the example of the code I have to change.
.font-15, input, textarea, select, .container-head, .se-pre-con p, .dialogboxbody, .top_menu .scroll div, .autocomplete-suggestion .txt {
font-size: 15px;
}
.shadow-2, .bt:hover, .context_menu_pai, .box_login, .datepicker.dropdown-menu, .dialogbox, .overflow-menu ul, .autocomplete-suggestions {
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.material-icons.large {
font-size: 6rem;
width: 6rem;
overflow: hidden;
}
.autocomplete-suggestions {
text-align: left;
cursor: default;
border-top: 0;
background: #FFFFFF;
position: absolute;
max-height: 254px;
overflow: hidden;
overflow-y: auto;
box-sizing: border-box;
}
.autocomplete-suggestion {
position: relative;
line-height: 23px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 1.02em;
color: #484848;
border-bottom: 1px solid #D7D7D7;
}
.autocomplete-suggestion .img {
float: left;
width: 100px;
height: 100%;
border-right: 1px solid #D7D7D7;
background: #FFFFFF;
margin-right: 15px;
}
.autocomplete-suggestion .img img {
width: 100px;
height: 100px;
}
.autocomplete-suggestion .txt {
padding: 10px;
width: 100%;
height: 100%;
}
.autocomplete-suggestion .txt div {
width: 100%;
font-weight: bold;
}
.autocomplete-suggestion b {
color: #0091FF;
}
.autocomplete-suggestion.selected {
background: #EDEDED;
border-right: 7px solid #0091FF;
}
<!-- Material Icons (Google) -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<div class="autocomplete-suggestions">
<div class="autocomplete-suggestion">
<div class="img"><i class="material-icons large">face</i>
</div>
<div class="txt">
<div>DES NIVEA ROLL-ON FEM. SENSITIVE & PURE 50ML</div>
TEXTO EXTRA
</div>
</div>
</div>
In its form it worked, but when the text is very large the vertical line that this side of the icon does not accompany the div 'autocomplete-suggestion', has how to solve this? I tried to use the '<p>' but it skipped a line and was not organized.
– Hugo Borges
Create a Jsfiddle with large text for me to see. When to
p
not get organized, I believe you can change themargin
to solve.– relaxeaza
ok, I put 'width: 300px;' inside the autocomplete-suggestion to simulate the ok error. follow the link: https://jsfiddle.net/kpa997tn/
– Hugo Borges
I did a gambiarra just to know if you want: https://jsfiddle.net/kpa997tn/1/
– relaxeaza
I sent you the wrong link, the right one and this one:https://jsfiddle.net/kpa997tn/2/ . I noticed that you put a fixed size, it worked but the windows will not have the same size, because it depends on the size of the text.
– Hugo Borges
That’s why :) How about creating another question with this problem? In the future you can help other people.
– relaxeaza
I have just done this: http://answall.com/questions/174237/comordeixar-linha-vertical-do-tamanho-da-div
– Hugo Borges