Hi Leute,
versuche gerade die maximale größe eines paragraphs zu ermitteln um die Hintergrundbox zu vergrößern. Habt ihr vielleicht eine Ahnung wie ich das machen könnte. Habe hier mal etwas versucht aber es funktionert irgendwie nicht. Blick da irgendwie nicht mehr durch.
Danke
versuche gerade die maximale größe eines paragraphs zu ermitteln um die Hintergrundbox zu vergrößern. Habt ihr vielleicht eine Ahnung wie ich das machen könnte. Habe hier mal etwas versucht aber es funktionert irgendwie nicht. Blick da irgendwie nicht mehr durch.
Danke
CSS:
.alert-gen{
text-align: left;
padding: 1em;
}
HTML:
<div class="row answers">
<div class="col-md-4 alert-danger alert-gen">
<p>Inadequate</p>
<p>Staff have access to their LSCB guidance but are not clear about their responsibilities or there is no coordinated approach to dealing with concerns. Inconsistent supervision arrangements. Policy in place but is not adhered to. No systems are in place to ensure that senior managers’ commitment is understood by staff within the organisation.</p>
</div>
</div>
Javascript:
$(".row.answers").each(function() {
var maxHeight = 0;
console.log("Starting loop");
var childAlert = $(this).children(".alert-gen");
console.log("Children: " + childAlert.length);
childAlert.each(function() {
var height = $(this).css("height");
var height = parseInt($(this).css("height"));
console.log("Height is" + height);
if (height > maxHeight)
maxHeight = height;
});
console.log("Max height is: " + maxHeight);
childAlert.each(function() {
$(this).height(maxHeight);
});
});
Zuletzt bearbeitet von einem Moderator: