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.

有帮助吗?

解决方案

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">

其他提示

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top