Not long ago, a netizen who was keen on making web pages asked a small question, "How to implement text in the format of power of numbers (such as the square of 10) in Dreamweaver?" It troubled me a lot. I really couldn’t bear it... I suddenly remembered that it is very simple to implement text in this format in various Office-related components, so I first made the text in exponential format in FrontPage, and then found out the source code and used it. Dreamweaver achieved the effect this netizen wanted to achieve:
run FrontPage (2000 or XP is acceptable), first enter "102" and then select "2", click the "Font" command in the "Format" menu, and in the pop-up dialog box After selecting "Superscript" and "OK", the input of "10 squared" is realized; after saving the page, go to the HTML code of the source file to find the relevant statements that control the power format text, and find that "exponent 2" is based on "2 "This way to mark.
Run Dreamweaver MX, switch the editing window to the "Code View and Design View" window, first enter "102" in the "Design View" window; then find the number "2" from the "Code View" window and place the numbers before and after it Enter a pair of labels such as "" and "" respectively; finally, after clicking the cursor in the "Design View" window, you will find that the originally entered text "102" has become the text "10 to the power of 10". Text in power format.