Question

Using this plugin to generate a message box. I have the problem with this css :

#modal{
visibility:hidden;
width:360px;
height:169px;
padding:8px;

.......
}

It worked well if I create a static div with #modal but when I create a dynamic div #modal + ID then the style does not work.

how to create a dynamic css.

Was it helpful?

Solution

You can Change the css to class and add that class to any no of div. css will be changed as follows

.modal{
visibility:hidden;
width:360px;
height:169px;
padding:8px;

.......
}

Add the class name in the div

<div class="modal">

OTHER TIPS

If you are changing the div I'd then you have to change the CSS selector too to #modal + I'd, also for example #modal1

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top