<style> and <script> tags are displayed physically on page
问题 i have very weird problem. If i put style or script tag on page, the browser sees them as html elements. In other words they are displayed, printed on page physically. Bottom code is shown in browser, on page, when i start my project. Any suggestions? 回答1: In your CSS code, you probably set display: inline-block on head , style , and script elements, possibly due to the use of the universal selector * . By default, those elements are not displayed (they have implied display: none ), but on