Article Topic Learning Download Q&A Programming Dictionary Game Recent Updates
LOGIN
简体中文(ZH-CN) English(EN) 繁体中文(ZH-TW) 日本語(JA) 한국어(KO) Melayu(MS) Français(FR) Deutsch(DE)

  • Popular searches:
  • PHP
  • MySQL
  • jquery
  • HTML
  • CSS
  • Whole station
  • Course
  • Article
  • Q&A
Found a total of 1453 related content
Front-end Vue3 actual combat [handwritten vue project]

Course2857

Course Introduction:Course introduction: 1. Cross-domain processing, token management, route interception; 2. Real interface debugging, API layer encapsulation; 3. Secondary encapsulation of Echarts and paging components; 4. Vue packaging optimization and answers to common problems.

APIPOST tutorial [Popularization of technical concepts related to network communication]

Course1795

Course Introduction:Apipost is an API R&D collaboration platform that integrates API design, API debugging, API documentation, and automated testing. It supports grpc, http, websocket, socketio, and socketjs type interface debugging, and supports privatized deployment. Before formally learning ApiPost, you must understand some related concepts, development models, and professional terminology. Apipost official website: https://www.apipost.cn

Issue 22_Comprehensive actual combat

Course5521

Course Introduction:(Consult WeChat: phpcn01) The comprehensive practical course aims to consolidate the learning results of the first two stages, achieve flexible application of front-end and PHP core knowledge points, complete your own projects through practical training, and provide guidance on online implementation. Comprehensive practical key practical courses include: social e-commerce system backend development, product management, payment/order management, customer management, distribution/coupon system design, the entire WeChat/Alipay payment process, Alibaba Cloud/Pagoda operation and maintenance, and project online operation. .....

Issue 22_PHP Programming

Course5172

Course Introduction:(Consult WeChat: phpcn01) Starting from scratch, you can solve conventional business logic, operate MySQL with PHP to add, delete, modify, and query, display dynamic website data, master the MVC framework, master the basics of the ThinkPHP6 framework, and learn and flexibly master all knowledge involved in PHP development. point.

Issue 22_Front-end development

Course8713

Course Introduction:(Consult WeChat: phpcn01) The learning objectives of the front-end development part of the 22nd issue of PHP Chinese website: 1. HTML5/CSS3; 2. JavaScript/ES6; 3. Node basics; 4. Vue3 basics and advanced; 5. Mobile mall/ Website background homepage layout; 6. Automatic calculation of tabs/carousels/shopping carts...

More courses
  • How to embed background video in HTML/CSS?

    Hi everyone, I recently encountered a problem. I'm trying to set a video background to my site, but the centered text runs all the way to the bottom, I don't know why, yet the navigation bar is fine. I've done a lot of research but can't find a solution. For CSS, I made the following settings: *{margin:0;padding:0;box-sizing:border-box;font-family:TESLARegular;}.hero{width:100%;height:100vh;backg

    2023-11-06 13:59:13 0 1 240

  • Scale CSS sprites to background images: a guide

    .my-sprite{background-image:url("https://i.stack.imgur.com/lJpW8.png");height:100px;width:100px;background-position:00;background-position:-200px0px;}&l

    2023-11-02 10:39:28 0 2 288

  • Curl bottom edge of div inwards using CSS

    I want to bend the bottom edge of this rectangular div/background using CSS, so the result is this: Does anyone know how to achieve it? .curved{margin:0auto;height:400px;background:lightblue;border-radius:00200px200px;}&l

    2023-10-23 19:55:32 0 2 335

  • How to get the natural dimensions of an image using JavaScript or jQuery?

    So far I have this code: varimg=document.getElementById('draggable'); varwidth=img.clientWidth; varheight=img.clientHeight; However, this gets me the html attribute-css style. I want to get the dimensions of the actual image resource of the file. I need this because after uploading the image, its width is set to 0px and I don't know why or where this happens. To prevent this,

    2023-10-21 13:53:08 0 2 275

  • How to prevent background image from flickering when changing

    I'm applying a repeating background image from the canvas to the div via JavaScript like this: varimg_canvas=document.createElement('canvas');img_canvas.width=16;img_canvas.height=16;img_canvas.getContext('2d'). drawImage(canvas,0,0,16,16);varimg=img_canvas.to

    2023-10-20 21:38:57 0 2 344

MoreQ&A
Set background image size using CSS?

Course Introduction:Using CSS, we can set a background image for an HTML element using the ‘background-image’ property. Also, after adding the background image, you need to set its dimensions. We can set the size of the background image using the CSS "background-size" property. Syntax Users can follow the syntax below to set the size of the background image using CSS. background-size:widthlength|width|contain|inherit|cover|initial We can use the above values to set the size of the background image. Here we have explained all the values. Width Length - Set the width of the background image and

2023-09-08 comment 01021

Use CSS to achieve the tiling effect of background images

Course Introduction:Using CSS to achieve the tiling effect of background images In web design, the tiling effect of background images is a common design requirement. The tiling effect of background images can be easily achieved through CSS. This article will introduce some common implementation methods and attach specific code examples. 1. Repeat tiling (repeat) The simplest way to tiling a background image is through the repeat attribute, which allows the background image to be tiled infinitely in the horizontal and vertical directions. Code example: body{background-im

2023-11-21 comment 0333

How to set background image in css

Course Introduction:In CSS, you can use the background or background-image attributes to set the background image. The specific syntax format is "background-image:url('image url');" or "background:url('image url');".

2021-03-22 comment 015052

Which property is used to set the background image of an element using CSS?

Course Introduction:In CSS, the ‘background-image’ property is used to set the background image of an element using CSS. The background image property has 4 different properties as described below. Url() - It takes an image path or remote URL to get the image from a specific location and set it as background. None - The user can remove the background using none as the value of the background-image property. Initial - It sets the initial background, in most cases there is no background. Inheritance - It sets the same background image as the parent element. Syntax Users can use the "background-image" attribute in CSS according to the following syntax. background-image:url('URL');bac

2023-09-05 comment 0457

CSS background image property

Course Introduction:The CSSbackground-image property is used to specify a background image. You can try running the following code to implement the background-image property in CSS - example