Hi,
We are declaring global values for setting Margin and padding to 0 in the css file
This value is being then overwritten for specific elements (e.x. P tags) further down in the css, which is recognized by all the browsers. However, this value is setting the margin's and Padding's to all elements in the Editor to 0 and ignoring the overwritten values defined in the CSS
Example is
p{
margin-bottom: 10px
}
Editor ignores this margin specifically definef for p and uses the global margin which is the first in the CSS file
Please let usknow if this is something that can be fixed
Thanks
Kalpesh
We are declaring global values for setting Margin and padding to 0 in the css file
*
{
margin: 0;
padding: 0;
}
This value is being then overwritten for specific elements (e.x. P tags) further down in the css, which is recognized by all the browsers. However, this value is setting the margin's and Padding's to all elements in the Editor to 0 and ignoring the overwritten values defined in the CSS
Example is
p{
margin-bottom: 10px
}
Editor ignores this margin specifically definef for p and uses the global margin which is the first in the CSS file
Please let usknow if this is something that can be fixed
Thanks
Kalpesh