Beginners have a few questions they don’t understand
1. How can I prevent the layout from changing with the browser window size? Originally they were arranged side by side, but after the window was reduced, they were arranged vertically.
2. English display problem
How can the English display not simply break lines because one word is not enough to write? Display like the first picture.
3. Wrote some code using css. . The html needs to write a button to display it. But how to control the position of the button? Using padding and margin has no effect. .
1. Set the fixed width or minimum width of the web page: style="width:800px;" or style=" min-width:800px;"
2. Add style="word-break: break-all;"
3. There are many ways to control the position of button. Margin and padding are just one of the methods. You can also use position. left/top/right/bottom, etc., it depends on how you display it.
Post the code and take a look. . . . . . . . . . .