Hi, currently on Apex 24.1.11
Customer likes Shuttles very much. But in one Shuttle the text is very long. The result is that the left side of the shuttle exceeds the whole page. The right side is not visible.
I tried to fix this with css. Is this really the way to do this?
Am I using the right tags?
Also with my css the line break is not working.
Any ideas?
Does this change in e.g. 24.2 or in future versions?
Many thanks, Peter
.shuttleSelect1 {
width: 100%;
max-width: 100%;
overflow: hidden;
box-sizing: border-box;
}
#P59_NAUFL_IDS_LEFT {
width: 100%;
max-width: 100%;
height: 400px;
overflow: hidden;
word-wrap: break-word;
white-space: normal;
overflow-x: hidden;
overflow-y: auto;
font-size: 13px;
}
#P59_NAUFL_IDS_RIGHT {
width: 100%;
max-width: 100%;
height: 400px;
overflow: hidden;
word-wrap: break-word;
white-space: normal;
overflow-x: hidden;
overflow-y: auto;
font-size: 13px;
}