Posts by Caetano Sincero • 230 points
10 posts
-
1
votes1
answer149
viewsA: Decrease the distance between bootstrap pads
Young pq you are using the Card and Card-body class in your menu item! what a crazy rss Take these classes and add only a margin-left to indent, I used ml-4 class for this, and it was good see…
-
1
votes2
answers63
viewsA: Duplicate content when printing the page
This is a standard position:Fixed behavior! Behold Fixed Do not Leave space for the element. Instead, position it at a specified position relative to the screen’s viewport and don’t move it when…
-
1
votes1
answer206
viewsA: Div in graphic form
Since you are using Bootstrap 4 you can use the flex class align-items-end, this will align the Col at the base of the Row, since it is already a flex container. Bootstrap 4 flex documentation link…
-
1
votes2
answers194
viewsA: How to position Modal in the center of the screen?
It is described in the official documentation, in modal-dialog you have to include also the class modal-dialog-centered Read here…
twitter-bootstrapanswered Caetano Sincero 230 -
2
votes2
answers33
viewsA: Organizing information in table
I think your problem is with the organization of TH/TD From what I understand Received and Date has to stay within the same TR and date with colspan 3 since the first cell is Received, see td, th {…
htmlanswered Caetano Sincero 230 -
3
votes1
answer29
viewsA: help with Focus effect
Friend not to be rude, but you don’t need JS, much less jQuery for that, just use the :Focus selector of CSS. And YES you can use JS inside jQuery, console.log() same is a basic example. As you put…
-
2
votes3
answers541
viewsA: Hide and Show child element via checkbox
I believe what you need is this. First take the checkbox from inside the table, put before the table, so you can get everything that comes under this checkbox. Ai you put a class in the TD you want…
-
1
votes2
answers241
viewsA: Select text in parentheses (CSS)
At the moment it is not possible, as we do not have a selector ::last-word, or ::first-word. Even in the Level 4 Selector Drafts there is no mention of this type of selector as you can see here:…
-
1
votes4
answers294
viewsA: How to shadow a text
I think that the best way for this effect is not with text-shadow but by placing a radial-gradient behind the text. In class . img-segment . segment-title vc places the gradient at the bottom, going…
-
1
votes1
answer71
viewsA: Responsive Box invading other elements of the page
In the div .BoxGeral you put a bit of unnecessary property like position:Absolute etc You can see that it works now by removing this property, now the content that comes after is no longer covered…