Four ways to get data from a foem form: (you can receive data submitted by post and get)

In our daily work or browsing the web, we often use and see many functions and styles of form submission. This function is realized by form form and some JavaScript or jQuery. Now let's use Visual Studio 2015 to verify it. There are four methods to obtain data from form. 1. Receive the data submitted by the form through formal parameters. 2. ...

Posted by mallard on Wed, 09 Feb 2022 01:55:25 +0100

Front end basics Chapter 8 - CSS

preface❤️ In order to illuminate the night sky, the stars stand high in the sky ❤️ 1, CSS Chapter 8 (1) 2D conversion one ️⃣ Transformation is one of the subversive features in CSS3, which can realize the effects of element displacement, rotation, scaling and so on; two ️⃣ transform can be simply understood as deformation: Move: transl ...

Posted by sheckel on Wed, 09 Feb 2022 00:17:30 +0100

Front end learning day21&day22: forms and tables

1. Form ① Function of form Collect the information of the client. When the visitor enters the information in the form and clicks the submit button, the information will be sent to the server, and the server script or application will process the corresponding information. When the server responds, it will return the requested data to the clie ...

Posted by noisyscanner on Tue, 08 Feb 2022 03:36:51 +0100

GUI programming --- Snake game development

① First knowledge theory Frame: the time slice is small enough = "is the animation, 1 second 30 frames. Connect is animation, open is static picture! Keyboard monitor Timer timer ② Game development ideas (define data, draw a panel, and listen for events (keyboard / event)) 1. First of all, a game main startup class, StartGame class, in ...

Posted by MikeUK on Tue, 08 Feb 2022 00:00:51 +0100

CSS section - Section 8 positioning

Location 1 Why do I need to locate? 1. What if I want an element to move freely on the page or in a box and press down on another box? 2. What if we want a box to stay fixed while we scroll the page? (Side navigation bar) The above effect, standard stream or floating can not be achieved quickly, so positioning is needed to achieve it. So: Floa ...

Posted by walnoot on Mon, 07 Feb 2022 18:21:38 +0100

Summary of some knowledge points of CSS

CSSBaidu's definition: Cascading style sheets (English full name: Cascading Style Sheets) is a computer language used to represent file styles such as HTML (an application of Standard General Markup Language) or XML (a subset of Standard General Markup Language). CSS can not only modify the web page statically, but also format the elements of t ...

Posted by joesaddigh on Sun, 06 Feb 2022 21:27:18 +0100

Third web front end training notes (CSS)

preface This article mainly records the content of learning CSS in HTML. 1, CSS (Overview) CSS (English full name: Cascading Style Sheets) Cascading Style Sheets is a computer language used to represent file styles such as HTML (an application of Standard General Markup Language) or XML (a subset of Standard General Markup Language). At p ...

Posted by KevinCB on Sun, 06 Feb 2022 19:40:09 +0100

013CSS Box Model

1, Introduction The so-called box model is to treat the layout elements in HTML pages as a rectangular box, that is, a container for content. CSS box model is essentially a box that encapsulates the surrounding HTML elements, including: border, outer margin, inner margin, and actual content 1. border Border can set the border of the elem ...

Posted by omerta on Sat, 05 Feb 2022 10:44:06 +0100

Comprehensive summary of CSS knowledge -- Quick Reference Manual

CSS brief introduction p { color:red; text-align:center; } Do not leave spaces between attribute values and units CSS comments start with / * and end with / id selector #para1 { text-align:center; color:red; } id and class should not start with numbers class selector .center {text-align:center;} Specifies tha ...

Posted by theBond on Thu, 03 Feb 2022 12:30:13 +0100

Front end CSS Foundation

1: CSS 1. What is CSS? CSS(Cascading Style Sheet,Cascading style sheets)Define how to display HTML Element. When the browser reads a style sheet, it will format (render) the document according to the style sheet. CSS3 namely css Language, the number 3 is the version number of the language css Language development documents are based on.cs ...

Posted by mkoga on Thu, 03 Feb 2022 11:57:26 +0100