Is there a way to create a glowing effect around a single row in a table, similar to the style shown in this example?
Here's the code that can help achieve this effect, sourced from CSS/HTML: Create a glowing border around an Input Field
.glowing-border {
border: 2px solid #dadada;
border-radius: 7px;
}
.glowing-border:focus {
outline: none;
border-color: #9ecaed;
box-shadow: 0 0 10px #9ecaed;
}
Does anyone have suggestions on how to apply this style to a table row?