Posts by Luciano Pestana • 61 points
4 posts
-
0
votes2
answers63
viewsA: Difficulty in putting the right images but they are diagonal
Follow example code. Run it and see if it solves your problem: <!DOCTYPE html> <html> <head> <title>Slide Show</title> <link rel="stylesheet"…
-
1
votes3
answers1569
viewsA: Command suggestions in Vscode
To autocomplete CSS parameters and values you can use the extension Intellisense for CSS Class Names which provides autocomplete for the CSS class name for the attribute of the HTML class based on…
-
0
votes1
answer66
viewsA: For syntax without the counter
the for C++ can be used in the traditional way with a counter, specifying the start of the count, the end and the steps (http://en.cppreference.com/w/cpp/language/for) or used as a more readable…
c++answered Luciano Pestana 61 -
2
votes1
answer195
viewsA: How to configure Docker Compose with equivalent to -d option (detach)
You can use the command: docker-compose up -d. This command starts the containers in the background and leaves them running. Learn more in the Docker documentation…
docker-composeanswered Luciano Pestana 61