The basic syntax of css & selector

1. How to use CSS in html Cascading style sheet css a. in line style Define a style attribute on the element and write the style in the style attribute b. inline style Define a style tag in the header of html and write the style in the style tag c. external style Define an external with For files with css suffix, use the link tag in the header ...

Posted by Pro.Luv on Wed, 02 Mar 2022 13:19:12 +0100

Advanced programming of javaScript DOM

Hi, little buddy ~ ~ welcome to my js teaching class. Let's learn javaScript together! catalog: I What is a DOM tree? II How to use JS to operate tables? III Common attributes and methods of Element (key points) IV Case explanation~ ~ ~ ~ let's briefly recall some important words in the last explanation~~~ 1. Documentation 2 Click # 3 ...

Posted by Serberus on Wed, 02 Mar 2022 13:13:44 +0100

Docker Compose of docker re learning series

Why do we need Docker Compose? Isn't it annoying to start containers one by one like this? Can you write a script to start the corresponding containers in order of dependency? ----Docker compose it's coming Docker Compose brief introduction Compose project is the official open source project of Docker, which is responsible for the ...

Posted by Adam W on Wed, 02 Mar 2022 13:12:11 +0100

Introduction to Shell programming in Linux

1, Shell script    use #/ bin/bash or #/ bin/sh definition #!/bin/bash echo "Alian love java" 2, Shell variable Naming can only use English letters, numbers and underscores. The first character cannot start with a numberThere must be no space between the variable name and the equal sign. You can use the underscore ()Punctuati ...

Posted by bri4n on Wed, 02 Mar 2022 12:59:02 +0100

[introduction to C + + server ----- 8.IPC interprocess communication -- socket]

College students are too boring at home during winter vacation. Sort out the knowledge they have learned before and review it by the way. The level is low and the professionalism is poor. It's only for reference. Don't spray it if you don't like it (no one sees it anyway). It's almost unsealed. Wuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwuwu ...

Posted by mydimension on Wed, 02 Mar 2022 12:52:42 +0100

SpringBoot foundation of microservice series: filter, interceptor and Aop aspect

SpringBoot filter, interceptor, Aop section 1, Filter Add the following annotation to the startup class: @ ServletComponentScan. Filter is a Servlet container level filter. It can filter almost all requests based on function callback. The complete process of filter: filter preprocesses the user request, then sends the request to the Ser ...

Posted by apw on Wed, 02 Mar 2022 12:38:33 +0100

c language heap, stack, data segment, code segment and bss segment

Program memory allocation The memory occupied by a program compiled by c/C + + is divided into the following parts 1. Stack - automatically allocated and released by the compiler to store the parameter values of functions and the values of local variables. Its operation mode is similar to the stack in the data structure. 2. Heap - generally al ...

Posted by johnkperks on Wed, 02 Mar 2022 12:34:30 +0100

Unittest unit test framework UI automation

Today, we will explain how to use unittest framework to realize UI automation in python. We won't repeat how to use webdriver API to operate web pages today. For missed partners, please stamp the link below~~ 1.unittest unit test framework Why use a unit test framework? The use of unit test framework can standardize the preparation of te ...

Posted by exa_bit on Wed, 02 Mar 2022 12:16:13 +0100

Spring Boot ------- employee management system

Spring Boot (IX) -- employee management system 18. Employee management system 18.1 preparation 18.1.1 front page Place the html page in the templates folderPut css, js and img into the static folder 18.1.2 entity class preparation Department public class Department { private Integer id; private String departmentName; public ...

Posted by arcticwolf on Wed, 02 Mar 2022 12:06:11 +0100

Blue Bridge Cup python basic exercise

Tortoise rabbit race prediction In other words, there are all kinds of rabbits and turtles in the world, but the research found that all rabbits and turtles have a common characteristic - like running. Therefore, competitions between tortoises and rabbits are constantly taking place in all corners of the world. Xiaohua is very interested in th ...

Posted by BillyMako on Wed, 02 Mar 2022 12:05:35 +0100