I have an issue with some content. The css applied to my page at the highlest level removes nearly all of the default styling. Deep within the page I have a spot where I need all of the default styling the comes with a browser.
What I'm thinking is I need to appy the default syling to every element within a container. This may not be the best approach so if there is a better way to get this done I'd be open to ideas.
So within the container mention above with the id tinymce I would like every element within that container to have the default styling. So all <p> tags, all <li> tags, all <table> tags, etc... must be the default. Does anyone have the syntax I would use for this within an external css file?
Robert D. Cluett Systems Engineer & Web Developer
Verizon Communications
I'm resetting to the default values because the container has css that destroys the defaults. I know this is a strange scenario but I'm using the Extjs framework which requires a css file which modifies quite a bit of the standard elements. In order for me to gain back the defaults where I need them I have to appy the css its container. I hope that makes sense.
Robert D. Cluett Systems Engineer & Web Developer
Verizon Communications
#tinymce li { display: list-item }
#tinymce head { display: none } /* head has no display property. This also indicates that tinymce is the id of html - seems unlikely */
#tinymce table {display:block; display: table }
#tinymce tr {display:block; display: table-row }
#tinymce thead {display:block; display: table-header-group }
#tinymce tbody {display:block; display: table-row-group }
#tinymce tfoot {display:block; display: table-footer-group }
For IE table elements are display:block
At least 98% of internet users' DNA is identical to that of chimpanzees
I think there stay may be some misunderstanding on what I am trying to do. Using this method will all of the html tags within the div inherit the styling defined in the css file by the #dfltmce id?
Having instantiated some css to force the the specified div to inherit the default styling it still does not work and for the life of me I cannot figure out what is going on. In the below code nothing within the div is styled correctly wether I apply the css id or remove it. It still looks like something is hijacking my css. : (
Bookmarks