Home  >  Article  >  Web Front-end  >  What is the difference between jsp and css

What is the difference between jsp and css

青灯夜游
青灯夜游Original
2021-04-28 14:54:193522browse

Differences: 1. JSP is a dynamic web page development technology that uses the Java programming language; CSS is a computer language used to express file styles such as HTML or XML, which can achieve the integration of web pages and content. A separate style language. 2. JSP is executed on the server, and CSS is parsed and rendered on the client.

What is the difference between jsp and css

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

What is jsp?

The full name of JSP is Java Server Pages, and its Chinese name is java server page. It is a dynamic web development technology. It uses JSP tags to insert Java code into HTML web pages; tags usually start with <% and end with %>.

JSP technology uses the Java programming language to write XML-like tags and scriptlets to encapsulate the processing logic for generating dynamic web pages. Web pages can also access the application logic of resources that exist on the server through tags and scriptlets.

JSP separates web page logic from the display of web design, supports reusable component-based design, and makes the development of web-based applications quick and easy.

What is CSS?

CSS (Cascading Style Sheets, cascading style sheets) is a computer language used to express file styles such as HTML or XML. It is a programming language used to express html styles. A style language that can separate web pages and content.

CSS is mainly used to design the style of web pages and beautify web pages; it can not only statically modify web pages, but also dynamically format various elements of web pages in conjunction with various scripting languages.

CSS can perform pixel-level precise control over the layout of element positions in web pages, supports almost all font size styles, and has the ability to edit web page objects and model styles.

The difference between jsp and css

JSP is a dynamic web development technology that uses the Java programming language. CSS is a computer language used to express file styles such as HTML or XML. It is a style language that can separate web pages and content.

JSP is executed on the server, and CSS is parsed and rendered on the client (browser).

For more programming related knowledge, please visit: Programming Video! !

The above is the detailed content of What is the difference between jsp and css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn