Looking for assistance with adding an iOS-like blur behind text in columns using HTML code that utilizes Bootstrap 3's rows and columns layout. I have already tried applying the .transparent CSS class with blur and opacity properties, but it ended up affecting the text inside the column as well.
Here is the transparency code snippet:
.transparent{
-webkit-filter: blur(20px);
-moz-filter: blur(20px);
-o-filter: blur(20px);
-ms-filter: blur(20px);
filter: blur(20px);
opacity: 0.4;
}
I am attempting to implement this in a specific div structure:
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-8" class="transparent">
<h3>Some text. </h3>
</div>
</div>
If you have any suggestions on how to apply the blur effect only to the background of col-md-8 without affecting the text itself, your help would be greatly appreciated. Thank you!