Posts by Alicia Tairini • 1,406 points
17 posts
-
0
votes2
answers180
viewsA: How to evaluate if the user will have the source used on the site?
Is there a website, portal or library that is used to guard against this risk? There is the property font-family of CSS, you can list a number of fonts for your document, they will be used in the…
-
0
votes2
answers19178
viewsA: How to use available fonts from Google Fonts in HTML?
You must specify the font path provided on google fonts, right after the font is installed and ready to use, we have to use the specific name that the site provides to work properly. Take an…
css3answered Alicia Tairini 1,406 -
0
votes1
answer404
viewsA: VLOOKUP function does not work in Excel
Use the function PROCV to search a value in a table. The syntax is: PROCV(valor_procurado; matriz_tabela; núm_índice_coluna; [intervalo_pesquisa]) Explaining better: =PROCV(Value you want to search;…
-
0
votes2
answers285
viewsA: Where to use accumulators in a unique peer-review algorithm?
I SET AN EXAMPLE TO HELP YOU WITH THE MEDIA AND SUM, THE PERCENTAGE IS UP TO YOU. #include <stdio.h> int main() { // INICIALIZANDO VARIAVEIS COM 0. int N; int par = 0; int impar = 0; int…
-
5
votes2
answers598
viewsA: Counter properties in CSS. What are they for and how do they work?
The estate counter-reset creates or resets a CSS counter for a given value. The estate counter-increment causes the value of the counter to be increased or decreased. Take the example, where I say…
cssanswered Alicia Tairini 1,406 -
3
votes2
answers2069
viewsA: Display the highest and lowest value between two integers when they are different from each other
#include <stdio.h> int main() { int v1, v2; printf("Valor 1:"); scanf("%d", &v1); printf("Valor 2:"); scanf("%d", &v2); if(v1 == v2){ printf("Os valores %d e %d são iguais.", v1, v2);…
-
4
votes2
answers4935
viewsA: Remove Visual Studio Code Side Panel
Open the Visual Studio Code, press the shortcut ctr + ,. This command box will now appear. Therein type: editor.minimap.enabled and tighten enter. It’ll stay that way: Notice that there is an icone…
visual-studio-codeanswered Alicia Tairini 1,406 -
2
votes1
answer1087
viewsQ: How to validate Combobox?
I have a Form registration in which you have some fields TextBox and ComboBox, I want my code to allow the user to register only when all fields are filled, but it is only validating TextBox, thus…
-
26
votes2
answers7627
viewsA: What is the difference between Javascript and jQuery?
JavaScript is a language, while jQuery is a library focused on the manipulation of DOM elements. Libraries are made based on a language and frameworks are usually made based on a library. What…
-
8
votes2
answers314
viewsQ: Is there any difference between clip and overflow property?
Studying on the property clip I came across the following statement: The estate clip works in a similar way to overflow with some differences. It gave me some doubts: This statement is true? What…
-
15
votes5
answers2672
viewsA: What is the </datalist> tag for?
What is the tag < datalist for>? It is used to provide an "auto-fill" feature in form elements. It allows you to provide a list of predefined options to the user as they enter data. For…
-
13
votes2
answers640
viewsA: What’s the clip property for?
CLIP means CROP, that is, it cuts out the contents of a box. The syntax is: .container {clip: rect (top, right, bottom, left);} where: • container is the HTML element whose content will be cropped;…
-
8
votes5
answers20277
viewsA: How do I use @import in a CSS file?
I recommend that the @import be placed shortly after @charset "UTF-8";. Then you must specify the source path provided on Google Fonts, soon after the source will be installed and ready to use.…
-
11
votes3
answers3378
viewsA: How and how to best use CSS fonts?
I decided to go deeper and I came to that answer: To define what type of source to use in any code snippet HTML, through the CSS, we should use the property font-family with the name of the source…
-
10
votes3
answers3378
viewsQ: How and how to best use CSS fonts?
It is only possible to view a source on a website if that source is installed or came into the operating system or browser computer. I have been researching and found some different types of fonts…
-
6
votes3
answers1673
viewsA: When should I use the </img> tag or the background CSS property?
My answer was like this: The property in CSS background-image should only be used when an image is decorative, that is, it has no semantic value and only serves to leave the page more "pretty", if…
-
18
votes3
answers1673
viewsQ: When should I use the </img> tag or the background CSS property?
When should I use a tag </img> HTML to display an image? And background-image CSS? Factors such as accessibility and browser support can influence choice?…