A
A
Archer *range attack +10*2016-08-29 18:54:07
MySQL
Archer *range attack +10*, 2016-08-29 18:54:07

Why does Safari think the style attribute has no properties?

The same code (in which I even specially copied all the background properties for each modifier, thinking that it would work in safari) works in chrome and does not work in safari
5e7f622532b84ccaa92bbc48ec451149.png0ae036339be64b928076f74018f5f2a2.png
What needs to be done to make it work in Safari?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
R
Rsa97, 2016-06-19
@dmitrydeco

If any of these authors
If all three then

SELECT `p1`.`post_id`
  FROM `posts` AS `p1` 
  JOIN `posts` AS `p2` 
    ON `p2`.`post_id` = `p1`.`post_id` AND `p2`.`author_id` = :id2
  JOIN `posts` AS `p3` 
    ON `p3`.`post_id` = `p1`.`post_id` AND `p3`.`author_id` = :id3
  WHERE `p1`.`author_id` = :id1

And remove the `id` from the table, make the pair (`post_id`, `author_id`) the primary key

D
Dmitry Kim, 2016-06-19
@kimono

You can try like this:

select a.* from posts a
inner join (
select *, count (*) as cnt from post_author
where author_id in (1,2,3)
group by podt_id
having cnt = 3
) b on a.id = b.post_id

E
Egor, 2016-06-19
@egormmm

SELECT * FROM post p
WHERE p.id IN (SELECT post_id FROM post_author WHERE author_id IN (1,2,3))

D
dom1n1k, 2016-08-29
@kon-rafikov

By specification, a class cannot start with two hyphens. These are CSS variables. I've experienced this myself, sometimes it worked, sometimes it didn't.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question